結果
問題 | No.2725 Coprime Game 2 |
ユーザー | rlangevin |
提出日時 | 2024-04-12 22:23:04 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 195 bytes |
コンパイル時間 | 972 ms |
コンパイル使用メモリ | 82,652 KB |
実行使用メモリ | 76,340 KB |
最終ジャッジ日時 | 2024-10-02 23:26:36 |
合計ジャッジ時間 | 2,105 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,476 KB |
testcase_01 | AC | 37 ms
52,880 KB |
testcase_02 | AC | 38 ms
52,748 KB |
testcase_03 | AC | 92 ms
75,860 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
import sys input = sys.stdin.readline T = int(input()) for _ in range(T): N = int(input()) if N == 2 or (N - 6) % 12 == 0 or N % 420 == 0: print("P") else: print("K")