結果
| 問題 |
No.1579 New Type of Nim
|
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 12:57:11 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 98 bytes |
| コンパイル時間 | 334 ms |
| コンパイル使用メモリ | 82,468 KB |
| 実行使用メモリ | 54,220 KB |
| 最終ジャッジ日時 | 2025-06-12 13:03:31 |
| 合計ジャッジ時間 | 2,695 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / 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