Recent Posts
Notice
No Rules Rules
농구 경기 (feat. 백준, 1159번) 본문
728x90
반응형
농구 경기
https://www.acmicpc.net/problem/1159
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, arr['z' - 'a' + 1]{0};
string str;
cin >> N;
for(register int n = 0; n < N; ++n)
cin >> str, ++arr[str.at(0) - 'a'];
bool check = false;
for(register int i = 0; i <= ('z' - 'a'); ++i)
if(arr[i] >= 5)
cout << static_cast<char>(i + 'a'), check = true;
if(!check)
cout << "PREDAJA";
return 0;
}
// *&)*@*
반응형
단순 판단 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
최소공배수 (feat. 백준, 13241번) (0) | 2023.03.16 |
---|---|
행성 연결 (feat. 백준, 16398번) (0) | 2023.03.15 |
모든 순열 (feat. 백준, 10974번) (0) | 2023.03.15 |
조별과제를 하려는데 조장이 사라졌다 (feat. 백준, 15727번) (0) | 2023.03.15 |
국영수 (feat. 백준, 10825번) (0) | 2023.03.15 |
Comments