We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0232fc0 commit 297bf4bCopy full SHA for 297bf4b
week4/BOJ_10989(수 정렬하기 3).java
@@ -0,0 +1,29 @@
1
+import java.io.*;
2
+
3
+public class Main {
4
5
+ public static void main(String[] args) throws IOException {
6
+ BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
7
+ int N = Integer.parseInt(br.readLine());
8
+ int[] arr = new int[N];
9
+ int[] count = new int[10002];
10
+ int[] sortedArr = new int[N];
11
+ for(int i=0; i<N; i++) {
12
+ arr[i] = Integer.parseInt(br.readLine());
13
+ count[arr[i]]++;
14
+ }
15
+ for(int i=1; i<=10000; i++) {
16
+ count[i] += count[i-1];
17
18
19
+ int n = arr[i];
20
+ count[n]--;
21
+ sortedArr[count[n]] = n;
22
23
+ StringBuffer sb = new StringBuffer();
24
25
+ sb.append(sortedArr[i]).append('\n');
26
27
+ System.out.print(sb);
28
29
+}
0 commit comments