| 比赛 | 2024年6月13日练习赛 | 评测结果 | AAAAAAAAAA |
|---|---|---|---|
| 题目名称 | 开心题233 | 最终得分 | 100 |
| 用户昵称 | darkMoon | 运行时间 | 1.036 s |
| 代码语言 | C++ | 内存使用 | 5.16 MiB |
| 提交时间 | 2024-06-13 18:22:54 | ||
#include<bits/stdc++.h>
#define int long long
using namespace std;
ifstream fin("chopsticks.in");
ofstream fout("chopsticks.out");
int x;
auto mread = [](){fin >> x;return x;};
int n = mread(), ans;
signed main(){
while(n --)
ans ^= mread();
fout << ans;
return 0;
}