2192: 计数排序(4)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:6
Solved:4
Description
输入n个数字,数字范围-1000~1000,使用计数排序实现。
Input
第1行:输入n。
第2行:输入n个数字。
第2行:输入n个数字。
Output
排序后的序列。
Sample Input Copy
5
10 -9 10 -8 7
Sample Output Copy
-9 -8 7 10 10