记录编号 | 140963 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2006]明明的随机数 | 最终得分 | 100 | ||
用户昵称 | helloworld123 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.003 s | ||
提交时间 | 2014-11-27 11:45:33 | 内存使用 | 0.31 MiB | ||
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int n,i,x; int a[101]; bool f[1001]={0}; int main() { freopen("random.in","r",stdin); freopen("random.out","w",stdout); cin>>n; a[0]=0; for (i=1;i<=n;i++) { cin>>x; if ( not f[x]) { a[0]++; a[a[0]]=x; f[x]=true; }; }; sort(a+1,a+a[0]+1); cout<<a[0]<<endl; for (i=1; i<=a[0];i++) { cout<<a[i]<<" "; } return 0; }