mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 15:18:47 +00:00
27 lines
459 B
C++
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;
|
|
}
|