Gửi bài giải
Điểm:
1,50 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch
Develop the Quick Sort algorithm on an integer list ~A~.
Input
The first line is an integer ~N~ (~1~ ≤ ~N~ ≤ ~10^{5}~), the number of integers.
The ith line of the next ~N~ lines contains the integer (~0~ ≤ ~A_{i}~ ≤ ~10^{9}~).
Output
- Output ~N~ rows, each row contains the integer in an ascending order.
Sample Input
5
5 4 1 0 3
Sample Output
0 1 3 4 5
Bình luận