공부기록/백준

[백준] 1475번 방 번호

메델 2023. 12. 17. 08:49
import java.util.HashMap;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner kb = new Scanner(System.in);
		
		String number = kb.next();

		HashMap<Character, Integer> map = new HashMap<>();
		
		for(int i=0; i<number.length(); i++) {
			char digit = number.charAt(i);
			map.put(digit, map.getOrDefault(digit, 0)+1);
		}
		
		
        int count6 = map.getOrDefault('6', 0);
        int count9 = map.getOrDefault('9', 0);
		
		map.put('6', (count6 + count9 + 1)/2);
		map.remove('9');
		
		
		int max = 0;
		
		for(int count: map.values()) {
			max = Math.max(max, count);
		}
		
		System.out.println(max);
		
	}
}

'공부기록 > 백준' 카테고리의 다른 글

[백준] 2798번 블랙잭  (1) 2023.12.19
[백준] 14888 연산자 끼워넣기  (0) 2023.12.18
[백준] 5800번 성적 통계  (0) 2023.12.17
[백준] 2023번 수들의 합 2  (0) 2023.12.15
[백준] 3273번 두 수의 합  (0) 2023.12.13