P1059 [NOIP2006 普及组] 明明的随机数

// Problem: P1059 [NOIP2006 普及组] 明明的随机数
// Contest: Luogu
// URL: https://www.luogu.com.cn/problem/P1059
// Memory Limit: 125 MB
// Time Limit: 1000 ms
// User: Pannnn

#include <bits/stdc++.h>

using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    int n;
    cin >> n;
    vector<int> info(n);
    for (int i = 0; i < n; ++i) {
        cin >> info[i];
    }
    sort(info.begin(), info.end());
    info.erase(unique(info.begin(), info.end()), info.end());
    
    cout << info.size() << endl;
    for (int i = 0; i < info.size(); ++i) {
        cout << info[i] << " ";
    }
    cout << endl;
    return 0;
}
上一篇:大厂Python招聘面试100题


下一篇:在创建窗口时,对需要进行数据库连接的控件进行初始化,或者在数据模块中,非常有用