记录编号 |
135870 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2007]统计数字 |
最终得分 |
100 |
用户昵称 |
我 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.083 s |
提交时间 |
2014-11-01 20:10:56 |
内存使用 |
0.84 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
inline void get1(int &x)
{
char ch;
while(ch=getchar(),ch<48||ch>57);
x=ch-48;
while(ch=getchar(),ch>47&&ch<58)x=x*10+ch-48;
}
int main()
{
freopen("pcount.in","r",stdin);
freopen("pcount.out","w",stdout);
int n,a[200001];
get1(n);
for(int i=1;i<=n;i++)
get1(a[i]);
sort(a,a+n+1);
int b=1;a[0]=0;
for(int i=2;i<=n;i++)
{
if(a[i]!=a[i-1])
{
printf("%d %d\n",a[i-1],b);
b=0;
}
b++;
}
printf("%d %d",a[n],b);
return 0;
}