#include <iostream>
#include <bits/stdc++.h>
#include <cmath>
#include <algorithm>
#include <vector>
#include <deque>
#include <set>
#include <stack>
#include <string>
#include <map>
#include <queue>
using namespace std;
const long long oo = 1000000000000000000;
long long int sum, ans = 0, mx = 0, mn = 1000000000, num, pos;
/*
ViHHiPuh
(( `'-""``""-'` ))
)-__-_.._-__-(
/ --- (o _ o) --- \
\ .-* ( .0. ) *-. /
_'-. ,_ '=' _, .-'_
/ `;#'#'# - #'#'#;` \
\_)) -----'#'----- ((_/
# --------- #
'# ------- ------ #'
/..-'# ------- #'-.\
_\...-\'# -- #'/-.../_
((____)- '#' -(____))
cout << fixed << setprecision(6) << x;
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
freopen ( "sum.in", "r", stdin )
*/
int mp[ 10000 ];
int main () {
int n;
cin >> n;
int a[ n + 1 ];
for ( int i = 1; i <= n; i ++ ) {
cin >> a[ i ];
mx = max( mx, a[ i ] + 0ll );
}
if ( n <= 10000 ) {
for ( int i = 1; i <= n; i ++ ) {
for ( int j = i; j <= n; j ++ ) {
sum = a[ i ] + a[ j ];
ans = ans ^ ( sum );
}
}
}
else {
for ( int i = 1; i <= n; i ++ )
mp[ a[ i ] ] ++;
for ( int i = 1; i <= mx; i ++ ) {
sum = mp[ i ] * ( mp[ i ] + 1 ) / 2;
if ( sum % 2 )
ans = ans ^ ( i + i );
for ( int j = i + 1; j <= mx; j ++ ) {
sum = mp[ i ] * ( mp[ j ] );
if ( sum % 2 )
ans = ans ^ ( i + j );
}
}
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
204 KB |
Output is correct |
2 |
Correct |
7 ms |
204 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
262 ms |
4180 KB |
Output is correct |
2 |
Correct |
243 ms |
3916 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
262 ms |
4180 KB |
Output is correct |
2 |
Correct |
243 ms |
3916 KB |
Output is correct |
3 |
Runtime error |
297 ms |
15012 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
204 KB |
Output is correct |
2 |
Correct |
7 ms |
204 KB |
Output is correct |
3 |
Runtime error |
39 ms |
1188 KB |
Execution killed with signal 11 |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
204 KB |
Output is correct |
2 |
Correct |
7 ms |
204 KB |
Output is correct |
3 |
Correct |
262 ms |
4180 KB |
Output is correct |
4 |
Correct |
243 ms |
3916 KB |
Output is correct |
5 |
Runtime error |
297 ms |
15012 KB |
Execution killed with signal 11 |
6 |
Halted |
0 ms |
0 KB |
- |