题解 | #龙职院卷怪争霸#
龙职院卷怪争霸
https://ac.nowcoder.com/acm/contest/27150/A
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <stdio.h>
#include <cmath>
#include <string>
using namespace std;
int arr[110];
int main()
{
int n;
cin>>n;
for(int i=0;i<n;i++){
cin>>arr[i];
}
for(int i=0;i<n;i++){
int temp=0;
for(int j=0;j<i;j++){
if(arr[j]<arr[i]) temp++;
}
cout<<temp<<" ";
}
return 0;
}