#include <iostream>
#include <map>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
map<char,int>m;
int n; cin>>n;
while(n--){ //๋ชจ๋ ์ด๋ฆ ์
๋ ฅ
string name; cin>>name;
m[name[0]]++;
}
bool flag=false;
for(auto i=m.begin(); i!=m.end(); i++){
if(i->second>=5){ //๊ฐ์ ์ฑ์ ๊ฐ์ง ์ ์๊ฐ 5๋ช
์ด์์ผ๊ฒฝ์ฐ
flag=true; //์ ๋ฐ ์ ๋ฌด๋ฅผ ์ฐธ์ ๋ฐ๊พผ๋ค.
cout<<i->first; //์ฑ์ ์ถ๋ ฅ ํ๋ค.
}
}
if(!flag) cout<<"PREDAJA"; //์ ๋ฐ์ด ๋ถ๊ฐ ํ ๊ฒฝ์ฐ ๋ถ๊ฐ ์ถ๋ ฅ
}
'Algorithm ๐ง๐ปโ๐ป > ๋ฐฑ์ค(BOJ)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค,c++] 11652๋ฒ - ์นด๋ (0) | 2021.10.31 |
---|---|
[๋ฐฑ์ค,c++] 11651๋ฒ - ์ขํ ์ ๋ ฌํ๊ธฐ2 (0) | 2021.10.28 |
[๋ฐฑ์ค,c++] 11650๋ฒ - ์ขํ ์ ๋ ฌํ๊ธฐ (0) | 2021.10.28 |
[๋ฐฑ์ค,c++] 1157๋ฒ - ๋จ์ด ๊ณต๋ถ (0) | 2021.10.28 |
[๋ฐฑ์ค,c++] 11562๋ฒ - ๋ฐฑ์๋ก ๋ธ๋ ์ดํฌ (0) | 2021.10.28 |
[๋ฐฑ์ค,c++] 11557๋ฒ - Yangjojang of The Year (0) | 2021.10.28 |
๋๊ธ