結果
問題 | No.2725 Coprime Game 2 |
ユーザー | Carpenters-Cat |
提出日時 | 2024-04-12 22:27:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 280 bytes |
コンパイル時間 | 4,207 ms |
コンパイル使用メモリ | 262,372 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-02 23:28:54 |
合計ジャッジ時間 | 6,034 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 210 ms
5,248 KB |
testcase_04 | AC | 220 ms
5,248 KB |
testcase_05 | AC | 212 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 127 ms
5,248 KB |
testcase_08 | AC | 192 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; int main () { int T; cin >> T; while (T--) { ll N; cin >> N; int fl = 2; while (N % fl == 0) fl ++; cout << (gcd(N, fl) == 1 ? "K" : "P") << endl; } }