记录编号 315245 评测结果 AAAAAAAAAA
题目名称 [HSOI 2018] 开心题233 最终得分 100
用户昵称 GravatarSky_miner 是否通过 通过
代码语言 C++ 运行时间 0.580 s
提交时间 2016-10-05 06:06:51 内存使用 4.40 MiB
显示代码纯文本
#include <cstdio>
using namespace std;
inline void read(int &x){
	x=0;char ch;bool flag = false;
	while(ch=getchar(),ch<'!');if(ch == '-') ch=getchar(),flag = true;
	while(x=10*x+ch-'0',ch=getchar(),ch>'!');if(flag) x=-x;
}
inline int cat_min(const int &a,const int &b){return a<b ? a:b;}
inline int cat_max(const int &a,const int &b){return a>b ? a:b;}
int main(){
	freopen("chopsticks.in","r",stdin);
	freopen("chopsticks.out","w",stdout);
	int n;read(n);
	int x = 0;
	for(int i=1,y;i<=n;++i){
		read(y);
		x ^= y;
	}
	printf("%d",x);
	return 0;
}