結果

問題 No.1579 New Type of Nim
ユーザー hir355hir355
提出日時 2021-07-02 21:32:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 88 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 53,692 KB
最終ジャッジ日時 2024-06-29 11:06:22
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,072 KB
testcase_01 AC 33 ms
52,248 KB
testcase_02 AC 33 ms
52,084 KB
testcase_03 AC 31 ms
51,916 KB
testcase_04 AC 30 ms
52,672 KB
testcase_05 AC 30 ms
52,168 KB
testcase_06 AC 31 ms
52,288 KB
testcase_07 AC 31 ms
51,832 KB
testcase_08 AC 30 ms
52,228 KB
testcase_09 AC 29 ms
53,308 KB
testcase_10 AC 29 ms
52,956 KB
testcase_11 AC 30 ms
51,936 KB
testcase_12 AC 30 ms
51,908 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 31 ms
52,300 KB
testcase_18 AC 31 ms
51,940 KB
testcase_19 WA -
testcase_20 AC 31 ms
53,492 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 31 ms
52,140 KB
testcase_24 AC 31 ms
52,036 KB
testcase_25 AC 30 ms
51,920 KB
testcase_26 AC 30 ms
52,032 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 32 ms
52,272 KB
testcase_30 WA -
testcase_31 AC 30 ms
52,052 KB
testcase_32 AC 31 ms
51,696 KB
testcase_33 AC 30 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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