結果

問題 No.2722 Kenken Fight
ユーザー MasKoaTSMasKoaTS
提出日時 2024-03-29 15:07:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 76,884 KB
最終ジャッジ日時 2024-09-30 15:02:50
合計ジャッジ時間 1,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,392 KB
testcase_01 AC 65 ms
76,548 KB
testcase_02 AC 70 ms
76,544 KB
testcase_03 AC 93 ms
76,680 KB
testcase_04 AC 73 ms
76,396 KB
testcase_05 AC 75 ms
76,884 KB
testcase_06 AC 76 ms
76,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve(n):
    if(n == 1):
        return 'P'
    return 'K'

t = int(input())
for _ in [0] * t:
    n = int(input())
    print(solve(n))
0