벡준1475
[백준, BOJ 1475] 방 번호 (java)
https://www.acmicpc.net/problem/1475메모리: 14,316 KB , 시간: 108 ms사용 알고리즘: 구현 import java.io.BufferedReader;import java.io.InputStreamReader;public class Main { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); // 필요한 숫자 개수 int[] counts = new int[9..