백준 #8958 OX퀴즈

kkily·2021년 7월 2일
0

[알고리즘]

목록 보기
28/102

문제링크

#include <iostream>
#include <cstring>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int n;
    int sum = 0;
    int correct = 0;
    cin >> n;

    char ch[80];

    for (int i = 0; i < n; i++)
    {
        cin >> ch;
        for (int j = 0; j < strlen(ch); j++)
        {
            if (ch[j] == 'O')
            {
                correct++;
                sum += correct;
            }
            else
            {
                correct = 0;
            }
        }
        cout << sum << "\n";
        sum = 0;
        correct = 0;
    }
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글

관련 채용 정보