문제 출처: https://www.acmicpc.net/problem/1475



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
import java.io.BufferedReader;
import java.io.InputStreamReader;
 
public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String N = reader.readLine();
        int[] number = new int[10];
        
        for(int i=; i<N.length() ; i++)
            number[N.charAt(i)-'0']++// 0-9 개수 카운트
        
        int result = 0;
        int sixNine = (number[6]+number[9]) / + (number[6]+number[9]) % 2// 6과 9 계산
        
        for(int i=; i<10 ; i++){
            if(i==|| i==9)
                continue;
            
            if(result < number[i])
                result = number[i];
        }
        
        if(result < sixNine)
            result = sixNine;
        
        System.out.println(result);
    }
}
cs


'Algorithm' 카테고리의 다른 글

백준 10845번: 큐  (0) 2018.10.25
백준 6064번: 카잉 달력  (0) 2018.10.24
백준 2775번: 부녀회장이 될테야  (0) 2018.10.24
백준 1193번: 분수찾기  (0) 2018.10.24
백준 2292번: 벌집  (0) 2018.10.24

+ Recent posts