728x90
반응형
#include <iostream>
using namespace std;
int main() {
int answer = 0;
int n,flag=0,count = 0;
cin >> n;
string name[n];
for(int i = 0 ; i < n ; i++){
cin >> name[i];
}
for(int i = 0 ; i < 26 ; i++ ){
count = 0;
for(int j = 0 ; j < n ; j++ ){
if(name[j][0] == 'a' + i){
count++;
}
}
if(count >= 5) {
flag = 1;
cout << (char)('a' + i) ;
}
}
if(flag == 0) cout << "PREDAJA";
return 0;
}
https://www.acmicpc.net/problem/1159
728x90
반응형
'Problem Solving' 카테고리의 다른 글
2-2. OX퀴즈 (백준 8958) (0) | 2021.07.07 |
---|---|
2-1. 비밀번호 발음하기 (백준 4659) (0) | 2021.07.07 |
1-9. Two City Scheduling (LeetCode 1029) (0) | 2021.07.07 |
1-8. 소수 만들기 (프로그래머스 Summer/Winter coding 2018) (0) | 2021.07.07 |
1-7. 블라인드 (백준 2799) (0) | 2021.07.07 |
댓글