记录编号 |
315254 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[HSOI 2018] 开心题233 |
最终得分 |
100 |
用户昵称 |
哒哒哒哒哒! |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.628 s |
提交时间 |
2016-10-05 06:09:54 |
内存使用 |
0.26 MiB |
显示代码纯文本
#include <cstdlib>
#include <cstdio>
#include <cstring>
using namespace std;
int read(){
int x=0,f=1;char ch;
while(ch=getchar(),ch<'!');
if(ch=='-') f=-1,ch=getchar();
x=ch-48;
while(ch=getchar(),ch>'!') x=x*10+ch-48;
return x*f;
}
int main(){
freopen("chopsticks.in","r",stdin);freopen("chopsticks.out","w",stdout);
int n=read(),ans=0;
for(int i=1,x;i<=n;i++){
x=read();ans^=x;
}
printf("%d\n",ans);
fclose(stdin);fclose(stdout);
return 0;
}