1320: 查找比我大的个数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:33
Solved:26
Description
若某元素在一组数中比它大元素越多,则说明这个数在这组数的值就越小。现请你统计出数组中的每个元素,数一数该数组有多少个元素比它大。
Input
第一行:N
第二行:N个整数
第二行:N个整数
Output
N个整数,各数这之间有空格
Sample Input Copy
5
4 6 12 16 8
Sample Output Copy
4 3 1 0 2
HINT
0<N<=100