2 条题解

  • 0
    @ 2024-4-7 14:51:49
    #pragma GCC optimize(2)
    #include<bits/stdc++.h>
    using namespace std;
    
    set<int> s;
    int main(){
    	ios_base::sync_with_stdio(false);
    	int n,t;
    	scanf("%d",&n);
    	for(int i=1;i<=n;i++){
    	    scanf("%d",&t);
    		s.insert(t);
    	}
    	stringstream ss;
    	for(auto it=s.begin();it!=s.end();it++){
    		ss<<*it<<" ";
    	}
    	cout<<ss.str(); 
    /*	for(auto it=s.begin();it!=s.end();it++){
    		printf("%d ",*it);
    	}
    */
    	return 0;
    }
    

    信息

    ID
    69
    时间
    1000ms
    内存
    256MiB
    难度
    9
    标签
    递交数
    681
    已通过
    48
    上传者