結果

問題 No.1579 New Type of Nim
ユーザー c-yan
提出日時 2021-07-02 22:28:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 109 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-29 12:17:21
合計ジャッジ時間 2,215 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 27 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())

a = min(A, B)
b = max(A, B)

if a == b:
    print('Q')
else:
    print('P')
0