0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 04:05:24 +00:00
OI-codes/Luogu/P1059/P1059.cpp
2021-12-22 16:25:45 +08:00

27 lines
459 B
C++

#include <algorithm>
#include <iostream>
#include <vector>
using std::cin;
using std::cout;
using std::endl;
int n, x;
std::vector<int> a;
int main() {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> x;
a.push_back(x);
}
std::sort(a.begin(), a.end());
a.erase(std::unique(a.begin(), a.end()), a.end());
cout << a.size() << endl;
for (int i : a) {
cout << i << ' ';
}
cout << endl;
return 0;
}