diff --git a/Luogu/problem/P7892/P7892.cpp b/Luogu/problem/P7892/P7892.cpp new file mode 100644 index 00000000..40d357c0 --- /dev/null +++ b/Luogu/problem/P7892/P7892.cpp @@ -0,0 +1,25 @@ +#include + +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; +}