728x90
https://www.acmicpc.net/problem/8958
using System;
namespace backjoon
{
class Program
{
static void Main(string[] args)
{
int t = int.Parse(Console.ReadLine());
int combo = 0;
int score = 0;
for(int i = 0; i < t; i++)
{
string s = Console.ReadLine();
for(int j = 0; j < s.Length; j++)
{
if (s[j] == 'O')
{
++combo;
score += combo;
}
else
{
combo = 0;
}
}
Console.WriteLine(score);
combo = 0;
score = 0;
}
}
}
}
728x90
'게임 프로그래밍 > C#' 카테고리의 다른 글
C# 숫자 달리기 (0) | 2021.12.13 |
---|---|
[백준]C# 코딩 : 4344번(평균은 넘겠지) (0) | 2021.09.26 |
[백준]C# 코딩 : 3052번(나머지) (0) | 2021.09.15 |
[백준]C# 코딩 : 2577번(숫자의 개수) (0) | 2021.09.15 |
[백준]C# 코딩 : 2562번(최댓값) (0) | 2021.09.08 |