mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 20:48:48 +00:00
parent
452deb9dc4
commit
01f503d8bf
13
LibreOJ/7/7.cpp
Normal file
13
LibreOJ/7/7.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user