結果
| 問題 |
No.2722 Kenken Fight
|
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2024-04-12 21:28:00 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 2,000 ms |
| コード長 | 163 bytes |
| コンパイル時間 | 272 ms |
| コンパイル使用メモリ | 82,360 KB |
| 実行使用メモリ | 76,324 KB |
| 最終ジャッジ日時 | 2024-10-02 22:59:33 |
| 合計ジャッジ時間 | 1,423 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 6 |
ソースコード
import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
N = int(input())
if N == 1:
print("P")
else:
print("K")
rlangevin