#include<bits/stdc++.h>
#define pb push_back
#define ii pair<int,int>
#define all(x) (x).begin(),(x).end()
#define sz(x) ((int)(x).size())
#define INF 100000000000000000
#define modulo 1000000007
#define mod 998244353
#define int long long int
using namespace std;
int32_t main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, ans = 0;
cin >> n;
vector<int> arr(n);
vector<ii> A;
for(int i = 0; i < n; i++) cin >> arr[i], A.pb({0, i});
for(int d = 0; d < 50; d++){
int w = (1ll << d);
vector<ii> t0, t1;
for(auto p : A){
if(arr[p.second] & w) t1.pb({arr[p.second] % (w * 2), p.second});
else t0.pb({arr[p.second] % (w * 2), p.second});
}
A = t0;
for(auto p : t1) A.pb(p);
int p1 = n - 1, p2 = n - 1, p3 = n - 1, cnt = 0;
for(auto p : A){
while(p1 >= 0 && A[p1].first + p.first >= w) p1--;
while(p2 >= 0 && A[p2].first + p.first >= w * 2) p2--;
while(p3 >= 0 && A[p3].first + p.first >= w * 3) p3--;
cnt += n - 1 - p3 + p2 - p1;
}
for(auto p : A){
if((p.first * 2) & w) cnt++;
}
assert(cnt % 2 == 0);
cnt /= 2;
if(cnt % 2) ans |= w;
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
640 KB |
Output is correct |
2 |
Correct |
7 ms |
640 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1672 ms |
64020 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1672 ms |
64020 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
640 KB |
Output is correct |
2 |
Correct |
7 ms |
640 KB |
Output is correct |
3 |
Correct |
185 ms |
7392 KB |
Output is correct |
4 |
Correct |
183 ms |
7356 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
640 KB |
Output is correct |
2 |
Correct |
7 ms |
640 KB |
Output is correct |
3 |
Execution timed out |
1672 ms |
64020 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |