結果
| 問題 |
No.1579 New Type of Nim
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 18:05:06 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 98 bytes |
| コンパイル時間 | 219 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2025-06-12 18:06:15 |
| 合計ジャッジ時間 | 2,378 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 WA * 18 |
ソースコード
A, B = map(int, input().split())
if max(A, B) > 2 * min(A, B):
print("P")
else:
print("Q")
gew1fw