1 条题解
-
0陈烨鑫 (chenyexin) LV 10 @ 2023-4-25 21:50:39
水题
#include<bits/stdc++.h> using namespace std; int main() { int n,a[11110]; cin>>n; for(int i=0; i<n; i++) cin>>a[i]; for(int i=0; i<n; i++) { int sum=0; for(int j=0; j<n; j++) if(a[i]<a[j]) sum++; cout<<sum<<" "; } cout<<endl; return 0; }
- 1
信息
- ID
- 1029
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 5
- 标签
- 递交数
- 15
- 已通过
- 14
- 上传者