ผลต่างระหว่างรุ่นของ "01204212/integer sorting"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
แถว 38: แถว 38:
  
 
== Test data ==
 
== Test data ==
 +
 +
Download them at: [http://theory.cpe.ku.ac.th/~jittat/courses/01204212/tasks/sortint/ http://theory.cpe.ku.ac.th/~jittat/courses/01204212/tasks/sortint/]
 +
 +
Correct answer for n10.in
 +
 +
<pre>
 +
22
 +
172
 +
189
 +
245
 +
266
 +
332
 +
399
 +
597
 +
858
 +
984
 +
</pre>
 +
 +
Correct answer for n10000.in (first 10 lines:
 +
 +
<pre>
 +
71
 +
83
 +
131
 +
188
 +
261
 +
265
 +
368
 +
399
 +
464
 +
495
 +
</pre>
  
 
== Code ==
 
== Code ==

รุ่นแก้ไขเมื่อ 03:26, 15 กันยายน 2559

This is part of 01204212.

You are given N integers (whose values are between -1,000,000,000 to 1,000,000,000). You want to sort them ascendingly.

Input/Output

Input

  • First line: an integer N (1<=N<=100,000)
  • The next N lines: each line contains one integer

Output

Output N lines of N integers in sorted order from the smallest to the largest.

Example

Input

5
10
2
300
25
7

Output

2
7
10
25
300

Test data

Download them at: http://theory.cpe.ku.ac.th/~jittat/courses/01204212/tasks/sortint/

Correct answer for n10.in

22
172
189
245
266
332
399
597
858
984

Correct answer for n10000.in (first 10 lines:

71
83
131
188
261
265
368
399
464
495

Code