0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 17:32:00 +00:00

D - Moderate Modular Mode

https://codeforces.com/contest/1604/submission/133681028
This commit is contained in:
Baoshuo Ren 2021-10-31 00:28:00 +08:00 committed by Baoshuo Ren
parent e80a522771
commit cdfdce21da
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

20
CodeForces/1604/D/D.cpp Normal file
View File

@ -0,0 +1,20 @@
#include <bits/stdc++.h>
using namespace std;
int t, x, y;
int main() {
cin >> t;
while (t--) {
cin >> x >> y;
if (x > y) {
cout << x + y << endl;
} else if (x == y) {
cout << x << endl;
} else {
cout << y - (y % x / 2) << endl;
}
}
return 0;
}