mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:18:47 +00:00
35 lines
586 B
C++
35 lines
586 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int n;
|
|
long long t, ans, p[60];
|
|
|
|
void insert(long long x) {
|
|
for (int i = 50; i >= 0; i--) {
|
|
if (x & (1ll << i)) {
|
|
if (!p[i]) {
|
|
p[i] = x;
|
|
break;
|
|
} else {
|
|
x ^= p[i];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
int main() {
|
|
cin >> n;
|
|
for (int i = 1; i <= n; i++) {
|
|
cin >> t;
|
|
insert(t);
|
|
}
|
|
for (int i = 50; i >= 0; i--) {
|
|
if ((ans ^ p[i]) > ans) {
|
|
ans ^= p[i];
|
|
}
|
|
}
|
|
cout << ans << endl;
|
|
return 0;
|
|
}
|