比赛 |
小练习赛:A组 |
评测结果 |
AWWWWWWWWW |
题目名称 |
明明的随机数 |
最终得分 |
10 |
用户昵称 |
ssf |
运行时间 |
0.004 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2014-10-21 19:10:13 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int a[100]={0};
int main(){
freopen("random.in","r",stdin);
freopen("random.out","w",stdout);
int n;
scanf("%d",&n);
int time=0;
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);
}sort(a+1,a+1+n);
for(int w=1;w<=n;w++){
if(a[w]==a[w+1]){
a[w+1]=0;
}
}
sort(a+1,a+1+n);
for(int t=1;t<=n;t++){
if(a[t]>0){
time++;
}
}cout<<time<<endl;
for(int o=1;o<=n;o++){
if(a[o]>0){
printf("%d ",a[o]);
}
}
return 0;
}