记录编号 558644 评测结果 AAAAAAAAAA
题目名称 平凡的数据范围 最终得分 100
用户昵称 Gravataryrtiop 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2021-01-15 10:21:29 内存使用 0.00 MiB
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int M = 65;
typedef long long LL;
LL d[M];
int n;
void func(LL x) {
	for(int i = 63;i >= 0;-- i) {
		if(x & (1ll << i)) {
			if(d[i])x ^= d[i];
			else {
				d[i] = x;
				break ;
			}
		}
	}
	return ;
}
int main() {
	freopen("xor_equ.in","r",stdin);
	freopen("xor_equ.out","w",stdout);
	scanf("%d",&n);
	LL x;
	for(int i = 1;i <= n;++ i) {
		scanf("%lld",&x);
		func(x);
	}
	LL ans = 0;
	for(int i = 63;i >= 0;-- i) {
		if((ans ^ d[i]) > ans)ans ^= d[i];
	}
	printf("%lld",ans);
	fclose(stdin);
	fclose(stdout);
	return 0;
}