結果

問題 No.2721 "Don't say N" Game
ユーザー ああいいああいい
提出日時 2024-05-23 19:41:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 66,976 KB
最終ジャッジ日時 2024-05-23 19:41:05
合計ジャッジ時間 1,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,828 KB
testcase_01 AC 59 ms
64,776 KB
testcase_02 AC 54 ms
66,112 KB
testcase_03 AC 64 ms
66,976 KB
testcase_04 AC 51 ms
64,836 KB
testcase_05 AC 55 ms
65,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(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")
0