- [NOIP2006 普及组] 明明的随机数
set做法正解
- 2023-7-30 10:41:35 @
#include
//#include<windows.h>
typedef long long ll;
using namespace std;
set<int> s1;
int main()
{
int n;
cin>>n;
for(int i=1;i<=n;i++){
int temp;
cin>>temp;
s1.insert(temp);
}
cout<<s1.size()<<endl;
for(auto it:s1){
cout<<it<<" ";
}
return 0;
}
2 条评论
-
ZHANGKONGYANG @ 2024-6-12 20:01:26
【赞】
-
2023-9-6 20:13:33@
6
- 1
信息
- ID
- 103
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 6
- 标签
- 递交数
- 23
- 已通过
- 10
- 上传者