https://www.acmicpc.net/problem/2941
using System;
using System.IO;
namespace B2941
{
class Program
{
static void Main()
{
StreamReader sr = new StreamReader(Console.OpenStandardInput());
StreamWriter sw = new StreamWriter(Console.OpenStandardOutput());
string input = sr.ReadLine();
int count = 0;
for (int i = 0; i < input.Length; i++)
{
if((i + 1) < input.Length)
{
if (input[i] == 'c')
{
if (input[i + 1] == '=' || input[i + 1] == '-') i++;
count++;
}
else if (input[i] == 'd')
{
if (((i + 2) < input.Length && input[i + 1] == 'z' && input[i + 2] == '=')) i += 2;
else if (input[i + 1] == '-') i++;
count++;
}
else if (i < input.Length - 1 && input[i + 1] == 'j')
{
if (input[i] == 'l' || input[i] == 'n') i++;
count++;
}
else if (i < input.Length - 1 && (input[i + 1] == '='))
{
if (input[i] == 's' || input[i] == 'z') i++;
count++;
}
else count++;
}
else count++;
}
sw.Write(count);
sr.Close();
sw.Flush();
sw.Close();
}
}
}
'알고리즘 > 백준 BOJ' 카테고리의 다른 글
[ BOJ/C# ] 1065 한수 (0) | 2023.11.08 |
---|---|
[ BOJ/C# ] 4673 셀프 넘버 (0) | 2023.11.07 |
[ BOJ/C# ] 1789 수들의 합 (0) | 2023.11.06 |
[ BOJ/C# ] 16435 스네이크버드, 골드 (0) | 2023.11.05 |
[ BOJ/C# ] 1427 소트인사이드 (0) | 2023.11.04 |