안녕하세요. 오늘은 민주주의적 판단을 할 거예요.
https://www.acmicpc.net/problem/30999
한 줄에서 O의 개수가 M/2개를 넘으면 cnt++해주면 됩니다.
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL);
int N, M, i, ans = 0, cnt;
string s;
cin >> N >> M;
for (i = 0; i < N; i++)
{
cnt = 0;
cin >> s;
for (char c : s)
if (c == 'O')
cnt++;
if (cnt > M / 2) ans++;
}
cout << ans;
}
감사합니다.