https://www.acmicpc.net/problem/1159
#include <bits/stdc++.h>
using namespace std;
int n;
int cnt[26];
int main()
{
cin >> n;
for (int i = 0; i < n; ++i)
{
string s;
cin >> s;
cnt[s[0] - 97]++; //a는97 A는65
}
bool z=false;
for(int i=0;i<26;++i)
if (cnt[i]>=5) {
cout << (char)(i + 97);
z = true;
}
if (!z) cout << "PREDAJA";
}
* 좌측에 맞춰 강제 형변환 됨.
string s= 97
과 string s= (char)97과 동일함.
'Algorithm > boj' 카테고리의 다른 글
백준 2178 미로탐색 //최단거리는 bfs (0) | 2023.04.02 |
---|---|
백준 2559 c++ (0) | 2023.03.01 |
백준 3986 좋은단어 (0) | 2023.01.25 |
백준 10808 알파벳 개수 (0) | 2023.01.24 |
백준 1158 cpp (0) | 2023.01.18 |