比赛 |
平凡的题目 |
评测结果 |
WWAWWWWWWW |
题目名称 |
平凡的数据范围 |
最终得分 |
10 |
用户昵称 |
Binary10 |
运行时间 |
0.097 s |
代码语言 |
C++ |
内存使用 |
0.39 MiB |
提交时间 |
2015-11-03 11:49:33 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
typedef long long LL;
const int maxn = 10000;
LL a[maxn];
int main()
{
freopen("xor_equ.in", "r", stdin);
freopen("xor_equ.out", "w", stdout);
ios::sync_with_stdio(false);
LL n;
cin >> n;
for(int i = 0; i < n; i++)
cin >> a[i];
LL ans = 0LL;
if(n <= 20){
LL now = 0LL;
for(LL s = 0; s < (1 << n); s++){
for(LL i = 0; i < n; i++)
if(s & (1 << i))
now ^= a[i];
if(now > ans) ans = now;
}
}
else ans = 0;
cout << ans << endl;
return 0;
}