結果

問題 No.1579 New Type of Nim
ユーザー rlangevinrlangevin
提出日時 2023-02-15 22:57:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 78 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,092 KB
実行使用メモリ 71,620 KB
最終ジャッジ日時 2023-09-25 06:42:57
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,228 KB
testcase_01 AC 69 ms
70,924 KB
testcase_02 AC 69 ms
71,072 KB
testcase_03 AC 69 ms
71,252 KB
testcase_04 AC 70 ms
71,448 KB
testcase_05 AC 68 ms
71,448 KB
testcase_06 AC 69 ms
71,096 KB
testcase_07 AC 68 ms
70,916 KB
testcase_08 AC 69 ms
71,448 KB
testcase_09 AC 69 ms
71,064 KB
testcase_10 AC 71 ms
71,228 KB
testcase_11 AC 69 ms
71,216 KB
testcase_12 AC 69 ms
71,188 KB
testcase_13 AC 68 ms
71,184 KB
testcase_14 AC 68 ms
71,272 KB
testcase_15 WA -
testcase_16 AC 68 ms
71,152 KB
testcase_17 WA -
testcase_18 AC 68 ms
71,376 KB
testcase_19 WA -
testcase_20 AC 76 ms
71,212 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 71 ms
71,360 KB
testcase_24 AC 71 ms
71,112 KB
testcase_25 AC 71 ms
71,060 KB
testcase_26 AC 70 ms
71,272 KB
testcase_27 AC 70 ms
71,264 KB
testcase_28 WA -
testcase_29 AC 70 ms
71,372 KB
testcase_30 AC 71 ms
71,196 KB
testcase_31 AC 72 ms
71,412 KB
testcase_32 AC 69 ms
71,216 KB
testcase_33 AC 71 ms
71,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
print("P") if abs(A - B) >= 2 else print("Q")
0