记录编号 |
581413 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2007]统计数字 |
最终得分 |
100 |
用户昵称 |
┭┮﹏┭┮ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.218 s |
提交时间 |
2023-08-02 17:19:36 |
内存使用 |
3.87 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
map<long long,long long>q;
int n;
long long u[200010],tot;
int main(){
freopen("pcount.in","r",stdin);
freopen("pcount.out","w",stdout);
scanf("%d",&n);
for(int i = 1;i <= n;i++){
long long s;
scanf("%lld",&s);
if(q[s] == 0){
u[++tot] = s;
}
q[s]++;
}
sort(u+1,u+1+tot);
for(int i = 1;i <= tot;i++){
printf("%lld %lld\n",u[i],q[u[i]]);
}
return 0;
}