#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stdio.h>
using namespace std;
int main() {
int C,t;
int ans[26] = { 0 }, max = 0;
string s;
vector<int> input;
while (cin>>s) {
for (int i = 0; i < s.length(); i++)
{
ans[s[i] - 'a']++;
}
s = "";
}
for (int i = 0; i < 26; i++)
{
if (max < ans[i])max = ans[i];
}
for (int i = 0; i < 26; i++) {
if (ans[i] == max)cout << (char)('a' + i);
}
}
뭐 별거 있나 ... 문제 이름 그대로 글자수만 세면 됨
'알고리즘 > BOJ문제풀이' 카테고리의 다른 글
186번째 문제 - 1124 언더 프라임 (0) | 2016.11.24 |
---|---|
185번째 문제 - 9417 최대 gcd (0) | 2016.11.24 |
미니 대회 (1) | 2016.11.23 |
183번째 문제 - 2667 단지번호붙이기 (0) | 2016.11.23 |
182번째 문제 - 11403 경로찾기 (0) | 2016.11.23 |