Maximums to the right
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
Given array of n integers. Move all maximum elements to the end of the array without changing the order of others.
Input
First line contains positive integer n. Next line contains n integers. All numbers do not exceed 100 by absolute value.
Output
Print the elements of updated array.
Examples
Input #1
Answer #1
Submissions 8K
Acceptance rate 54%