結果

問題 No.1579 New Type of Nim
ユーザー Kiri8128Kiri8128
提出日時 2021-07-02 22:52:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 70 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 86,784 KB
実行使用メモリ 71,312 KB
最終ジャッジ日時 2023-09-11 23:16:17
合計ジャッジ時間 4,246 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,024 KB
testcase_01 AC 75 ms
71,068 KB
testcase_02 AC 73 ms
71,196 KB
testcase_03 AC 79 ms
71,284 KB
testcase_04 AC 74 ms
71,192 KB
testcase_05 AC 74 ms
71,172 KB
testcase_06 AC 74 ms
71,208 KB
testcase_07 AC 75 ms
71,276 KB
testcase_08 AC 75 ms
71,204 KB
testcase_09 AC 74 ms
71,020 KB
testcase_10 AC 75 ms
71,084 KB
testcase_11 AC 73 ms
71,248 KB
testcase_12 AC 74 ms
71,192 KB
testcase_13 AC 73 ms
71,180 KB
testcase_14 AC 76 ms
71,288 KB
testcase_15 WA -
testcase_16 AC 76 ms
71,192 KB
testcase_17 WA -
testcase_18 AC 76 ms
70,988 KB
testcase_19 WA -
testcase_20 AC 76 ms
71,312 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 74 ms
71,288 KB
testcase_24 AC 74 ms
71,272 KB
testcase_25 AC 75 ms
71,112 KB
testcase_26 AC 76 ms
71,288 KB
testcase_27 AC 75 ms
71,020 KB
testcase_28 WA -
testcase_29 AC 76 ms
71,176 KB
testcase_30 AC 76 ms
71,196 KB
testcase_31 AC 75 ms
71,200 KB
testcase_32 AC 78 ms
71,188 KB
testcase_33 AC 76 ms
71,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
print("P" if abs(a - b) > 1 else "Q")
0