#include <bits/stdc++.h>
using namespace std;
int main(void) {
int n;
cin>> n;
map <int,int> mp;
vector <int> a(n);
for(int i = 0; i < n; i ++ ) {
cin >> a[i];
}
int ans = 0;
for(int i = 0; i < n; i ++) {
if(mp[a[i]]) {
ans ^= mp[a[i]];
continue;
}
int sum = 0;
for(int j = i; j < n; j ++) {
sum ^= (a[i] + a[j]);
}
mp[a[i]] = sum;
ans ^= sum;
}
cout << ans;
return false;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
460 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1681 ms |
4404 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1681 ms |
4404 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
460 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
460 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |