-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1157.cpp
51 lines (43 loc) · 805 Bytes
/
1157.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// Created by 융미 on 2019-04-28.
//1157 단어 공부
#include <cstdio>
#include <cstring>
#include <algorithm>
int main(){
char arr[1000001];
int len;
int max = -1;
int count[26] = {0, };
int num = 0;
int index = 0;
scanf("%s", arr);
len = strlen(arr);
for(int i = 0; i<len; i++)
{
if(arr[i] >= 'A' && arr[i] <= 'Z')
count[arr[i] - 65 ]++;
else
count[arr[i]-97]++;
}
for(int i = 0; i<26;i++)
{
if(max <= count[i])
{
max = count[i];
index = i;
}
}
for(int i= 0;i<26;i++)
{
if(count[i] == max)
{
num++;
}
}
if(num > 1)
printf("?");
else
printf("%c", index+65);
return 0;
}