結果

問題 No.2722 Kenken Fight
ユーザー naesiranaesira
提出日時 2024-04-12 22:03:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 84 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 76,388 KB
最終ジャッジ日時 2024-04-12 22:03:56
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,912 KB
testcase_01 AC 198 ms
76,092 KB
testcase_02 AC 261 ms
75,944 KB
testcase_03 AC 281 ms
76,336 KB
testcase_04 AC 247 ms
76,036 KB
testcase_05 AC 260 ms
76,108 KB
testcase_06 AC 260 ms
76,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(T := int(input())):
  N = int(input())
  print('K' if N > 1 else 'P')
0