题解
2024-06-10 15:07:58
发布于:上海
1阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int t[10010];
int n,x,y=0;
cin >> n;
for(int i = 0;i < n;i++){
cin >> x;
t[x] += 1;
if(y < x){
y = x;
}
}
for(int i = 0;i < y + 1;i++){
cout << t[i] << endl;
}
return 0;
}
这里空空如也
有帮助,赞一个