Problem1375--快速排序/归并排序

1375: 快速排序/归并排序

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

给定n个正整数ai,将ai降序排列。(n<=100000,0=<ai<=100000)

Input

第一行n
第二行n个数ai

Output

降序输出,两个数中间空一格。

Sample Input Copy

3
22 4 5

Sample Output Copy

22 5 4

Source/Category

分治