0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 23:28:48 +00:00

#7. Input Test

https://loj.ac/s/963727
This commit is contained in:
Baoshuo Ren 2021-01-02 23:59:10 +08:00 committed by Baoshuo Ren
parent 452deb9dc4
commit 01f503d8bf
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

13
LibreOJ/7/7.cpp Normal file
View File

@ -0,0 +1,13 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
unsigned long long x, ans = 0;
for (int i = 0; i < 3000000; i++) {
cin >> x;
ans ^= x;
}
cout << ans << endl;
return 0;
}