3271.Gravity Flip

Time Limit: 1s Memory Limit: 256MB

Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ability to change gravity.

There are n columns of toy cubes in the box arranged in a line. The i-th column contains ai cubes. At first, the gravity in the box is pulling the cubes downwards. When Chris switches the gravity, it begins to pull all the cubes to the right side of the box. The figure shows the initial and final configurations of the cubes in the box: the cubes that have changed their position are highlighted with orange.

3271_1.png

Given the initial configuration of the toy cubes in the box, find the amounts of cubes in each of the n columns after the gravity switch!

Input Format(From the terminal/stdin)

The first line of input contains an integer n (1 \le n \le 100), the number of the columns in the box. The next line contains n space-separated integer numbers. The i-th number ai (1 \le ai \le 100) denotes the number of cubes in the i-th column.

Output Format(To the terminal/stdout)

Output n integer numbers separated by spaces, where the i-th number is the amount of cubes in the i-th column after the gravity switch.

Sample Input 1

Copy
4
3 2 1 2
 \n
 · · · \n

Sample Output 1

Copy
1 2 2 3 
 · · · \n

Sample Input 2

Copy
3
2 3 8
 \n
 · · \n

Sample Output 2

Copy
2 3 8 
 · · \n

Hints

The first example case is shown on the figure. The top cube of the first column falls to the top of the last column; the top cube of the second column falls to the top of the third column; the middle cube of the first column falls to the top of the second column.

In the second example case the gravity switch does not change the heights of the columns.

Submit

请先 登录

© 2025 FAQs