0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:45:25 +00:00
OI-codes/Luogu/P1161/P1161.cpp

21 lines
348 B
C++
Raw Normal View History

2020-08-05 17:55:51 +00:00
// R36448353
2021-11-19 09:01:13 +00:00
#include <bits/stdc++.h>
2020-08-05 17:55:51 +00:00
using namespace std;
int main() {
int n, t, ans;
n = t = ans = 0;
double a;
n = t = ans = 0;
cin >> n;
2021-11-19 09:01:13 +00:00
for (int i = 1; i <= n; i++) {
2020-08-05 17:55:51 +00:00
cin >> a >> t;
2021-11-19 09:01:13 +00:00
for (int j = 1; j <= t; j++) {
ans ^= int(j * a);
2020-08-05 17:55:51 +00:00
}
}
cout << ans << endl;
return 0;
}