Hoon222y

[BOJ 1371] 가장 많은 글자 본문

코딩/BOJ & 알고스팟

[BOJ 1371] 가장 많은 글자

hoon222y 2017. 10. 11. 20:15

https://www.acmicpc.net/problem/1371


그냥 입출력 문제인데 내가 저렇게 EOF쓰는거 잘 못해서 기록용으로 쓴다. 문제풀 때 Xcode로 했는데 문제는 EOF버튼을 안누르고 입력넣은다음 왜 결과 안나오지? 이렇게 삽질하고 있었다가 그냥 냈는데 맞길래 깨달았다;; 


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
#include <iostream>
#include <cstdio>
#include <vector>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <set>
#include <queue>
#include <stack>
#define MAX_N 100
#define INF 1e8
#define MOD 1000000007
 
typedef long long ll;
using namespace std;
 
ll n,m,arr[111];
char s[55555];
 
int main(){
    memset(arr,0,sizeof(arr));
    
    for(int i=0;scanf("%c" , &s[i])!= EOF; i++){
        arr[s[i]-96]++;
    }
    int maxv = 0;
    
    for(int i=1;i<=26;i++){
        if(arr[i] > maxv)
            maxv = arr[i];
    }
    for(int i=1;i<=26;i++){
        if(arr[i] == maxv)cout << char(i+96);
    }
    return 0;
}
 
cs


'코딩 > BOJ & 알고스팟' 카테고리의 다른 글

[BOJ 9007] 카누 선수  (0) 2017.10.20
[BOJ 2023] 신비한 소수  (1) 2017.10.16
[BOJ 1328] 고층 빌딩  (0) 2017.10.09
[BOJ 1011] Fly me to the Alpha Centauri  (0) 2017.10.07
[BOJ 1495] 기타리스트  (0) 2017.10.07
Comments