結果

問題 No.1579 New Type of Nim
ユーザー ああいいああいい
提出日時 2022-01-10 22:02:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-11-14 11:10:29
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 39 ms
51,908 KB
testcase_03 AC 38 ms
51,624 KB
testcase_04 AC 37 ms
52,872 KB
testcase_05 AC 37 ms
52,068 KB
testcase_06 AC 37 ms
52,268 KB
testcase_07 AC 37 ms
52,620 KB
testcase_08 AC 38 ms
52,900 KB
testcase_09 AC 37 ms
52,456 KB
testcase_10 AC 37 ms
52,564 KB
testcase_11 AC 37 ms
52,556 KB
testcase_12 AC 38 ms
52,896 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 37 ms
52,960 KB
testcase_16 WA -
testcase_17 AC 38 ms
52,684 KB
testcase_18 WA -
testcase_19 AC 37 ms
52,300 KB
testcase_20 WA -
testcase_21 AC 36 ms
52,780 KB
testcase_22 AC 37 ms
51,744 KB
testcase_23 AC 37 ms
52,348 KB
testcase_24 AC 37 ms
52,680 KB
testcase_25 AC 38 ms
51,960 KB
testcase_26 AC 37 ms
52,028 KB
testcase_27 WA -
testcase_28 AC 37 ms
52,116 KB
testcase_29 AC 37 ms
53,492 KB
testcase_30 WA -
testcase_31 AC 37 ms
52,460 KB
testcase_32 AC 38 ms
52,232 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())
P = 'P'
Q = 'Q'

import sys
if A == 0:
    if B <= 1:
        print(Q)
        exit()
    else:
        print(P)
        exit()
if A == 1:
    if B == 1:
        print(Q)
        exit()
    else:
        print(P)
        exit()
if B <= 2:
    print(P)
    exit()
if min(A,B) == 2:
    print(Q)
else:
    print(P)
0