0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:45:25 +00:00

P7892 『JROI-3』R.I.P.

R59042987
This commit is contained in:
Baoshuo Ren 2021-10-03 19:22:42 +08:00 committed by Baoshuo Ren
parent 9317dd1aeb
commit 2629377a1e
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,25 @@
#include <bits/stdc++.h>
using namespace std;
int t, n, m;
bool flag;
int main() {
cin >> t;
while (t--) {
flag = true;
cin >> n >> m;
for (int i = 1; i * i <= n; i++) {
if (n % i == 0 && (i + 1 + n / i + 1) * 2 <= m) {
cout << "Good" << endl;
flag = false;
break;
}
}
if (flag) {
cout << "Miss" << endl;
}
}
return 0;
}