0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 16:25:25 +00:00
OI-codes/Luogu/P7892/P7892.cpp

26 lines
472 B
C++
Raw Permalink Normal View History

2021-10-03 11:22:42 +00:00
#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;
}