結果
問題 | No.2721 "Don't say N" Game |
ユーザー | MasKoaTS |
提出日時 | 2024-03-29 15:03:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 73 ms / 2,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 75,592 KB |
最終ジャッジ日時 | 2024-09-30 15:02:46 |
合計ジャッジ時間 | 1,171 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,564 KB |
testcase_01 | AC | 73 ms
72,704 KB |
testcase_02 | AC | 59 ms
70,456 KB |
testcase_03 | AC | 73 ms
75,592 KB |
testcase_04 | AC | 52 ms
66,440 KB |
testcase_05 | AC | 60 ms
73,332 KB |
ソースコード
import sys input = sys.stdin.readline def solve(n): cnt = sum(n % i == 0 for i in range(1, n + 1)) if(cnt & 1): return 'P' return 'K' t = int(input()) for _ in [0] * t: n = int(input()) print(solve(n))