#include "bits/stdc++.h"
using namespace std;
void solve() {
int n;
cin >> n;
vector<int> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
}
long long ans = 0;
for (int bit = 0; bit < 31; bit++) {
long long cnt = 0;
vector<vector<int>> bucket(2);
for (auto& x : a) {
bucket[x >> bit & 1].push_back(x % (1 << bit));
}
std::sort(bucket[0].begin(), bucket[0].end());
std::sort(bucket[1].begin(), bucket[1].end());
for (auto [_, __] : vector<pair<int, int>>{{0, 0}, {1, 1}}) {
auto l = bucket[_];
auto r = bucket[__];
int uk = 0;
for (int i = (int) r.size() - 1; i >= 0; i--) {
while (uk < (int) l.size() && l[uk] + r[i] < (1 << bit)) uk++;
cnt += (int) l.size() - uk;
}
}
for (auto [_, __] : vector<pair<int, int>>{{0, 1}}) {
auto l = bucket[_];
auto r = bucket[__];
int uk = 0;
for (int i = (int) r.size() - 1; i >= 0; i--) {
while (uk < (int) l.size() && l[uk] + r[i] < (1 << bit)) uk++;
cnt += uk;
}
}
if (cnt % 2) {
ans ^= (1 << bit);
}
}
cout << ans << '\n';
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
// cin >> t;
while (t--) {
solve();
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1664 ms |
17152 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1664 ms |
17152 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
336 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |