백준[JAVA] 10989.수 정렬하기 3- 자바


백준[JAVA] 10989.수 정렬하기 3- 자바

문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { StringBuilder sb = new StringBuilder(); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int size = Integer.parseInt(br.readLine()); // Counting Sort int cnt[] = new int[10001]; /* * input * 1


원문링크 : 백준[JAVA] 10989.수 정렬하기 3- 자바