1. 메모리 신경 안쓴 버전 public class CountingSort { public static void countingSort(int[] a, int[] b) { int[] c = new int[10001]; for (int i = 0; i = 0; i--) { b[--c[a[i]]] = a[i]; } } public static void main(String[] args) throws NumberFormatException, IOException { BufferedReade..