记录编号 |
381275 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2007]统计数字 |
最终得分 |
100 |
用户昵称 |
fate1 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.556 s |
提交时间 |
2017-03-11 10:59:19 |
内存使用 |
1.07 MiB |
显示代码纯文本
#include<iostream>
#include<algorithm>
#include<cstdio>
int fk[200001];
using namespace std;
int main ()
{
freopen("pcount.in","r",stdin);
freopen("pcount.out","w",stdout);
long long a,s,ans=1;
cin>>a;
for(int i=1;i<=a;i++)
cin>>fk[i];
sort(fk+1,fk+a+1);
s=fk[1];
cout<<s<<' ';
for(int i=2;i<=a;i++)
{
if(fk[i]==s)
{
ans++;
}
if(fk[i]!=s)
{
s=fk[i];
cout<<ans<<endl;
ans=1;
cout<<fk[i]<<' ';
}
}
cout<<ans;
return 0;
}