[코딩테스트 - 백준 1159번 C++] 농구 경기

최초로 (cho)·2023년 2월 9일
0

코딩테스트

목록 보기
8/9
post-custom-banner

'a' + 1 = 98 = 'b'

#include <bits/stdc++.h>
using namespace std;

int n, cnt[26];
string s, ret;
int main(){
    // ios_base::sync_with_stdio(false); 
    // cin.tie(NULL); cout.tie(NULL);

    cin >> n;
    
    for(int i = 0; i < n; i++){
        cin >> s;
        cnt[s[0] - 'a']++;
    }
    for(int i = 0; i < 26; i++){
        if(cnt[i] >= 5){
            ret += i + 'a';
        }
    }
    if (ret.size()) cout << ret << "\n";
    else cout << "PREDAJA" << "\n";
    
    return 0;
}
profile
relentless
post-custom-banner

0개의 댓글