結果
問題 | No.2721 "Don't say N" Game |
ユーザー | ああいい |
提出日時 | 2024-05-23 19:40:40 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 173 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 67,028 KB |
最終ジャッジ日時 | 2024-05-23 19:40:42 |
合計ジャッジ時間 | 1,668 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
T = int(input()) for _ in rang(T): N = int(input()) count = 0 for i in range(1,N + 1): if N % i == 0:count += 1 print("K" if count % 2 == 0 else "P")