結果

問題 No.1579 New Type of Nim
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-07-28 03:11:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 1,327 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-07-28 03:11:13
合計ジャッジ時間 2,929 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,888 KB
testcase_01 AC 34 ms
52,120 KB
testcase_02 AC 33 ms
52,668 KB
testcase_03 AC 34 ms
53,136 KB
testcase_04 AC 33 ms
53,092 KB
testcase_05 AC 33 ms
53,416 KB
testcase_06 AC 34 ms
52,756 KB
testcase_07 AC 34 ms
53,772 KB
testcase_08 AC 34 ms
52,676 KB
testcase_09 AC 34 ms
53,216 KB
testcase_10 AC 38 ms
54,084 KB
testcase_11 AC 33 ms
52,464 KB
testcase_12 AC 36 ms
52,632 KB
testcase_13 AC 34 ms
52,328 KB
testcase_14 AC 34 ms
53,808 KB
testcase_15 AC 34 ms
53,252 KB
testcase_16 AC 34 ms
52,828 KB
testcase_17 AC 33 ms
52,684 KB
testcase_18 AC 33 ms
53,284 KB
testcase_19 AC 33 ms
52,624 KB
testcase_20 AC 33 ms
53,664 KB
testcase_21 AC 38 ms
53,008 KB
testcase_22 AC 34 ms
52,980 KB
testcase_23 AC 34 ms
52,804 KB
testcase_24 AC 33 ms
52,404 KB
testcase_25 AC 33 ms
53,616 KB
testcase_26 AC 33 ms
53,044 KB
testcase_27 AC 33 ms
53,492 KB
testcase_28 AC 34 ms
52,340 KB
testcase_29 AC 33 ms
52,612 KB
testcase_30 AC 35 ms
52,200 KB
testcase_31 AC 34 ms
53,408 KB
testcase_32 AC 34 ms
53,080 KB
testcase_33 AC 34 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/955

def solve(a, b, first):
    if a == 1 or b == 1:
        return 1 - first

    k = a // 2
    k_ = b // 2

    k = min(k_, k)
    a -= k * 2
    b -= k * 2
    if a == 0 or b == 0:
        a += 2
        b += 2    
    turn = first
    while a > 1 and b > 1:
        if a > b:
            a -= 2
        else:
            b -= 2
        turn = 1 - turn
    return 1 - turn

def main():
    a, b = map(int, input().split())

    if abs(a - b) == 1:
        result = solve(a, b, 0)
        if result == 0:
            print("P")
        else:
            print("Q")
    else:
        if a == 1 or b == 1:
            print("P")
            return 
        
        if a > b:
            res = solve(b + 1, b, 1)
            res2 = solve(b - 1, b, 1)
            if res == 0 or res2 == 0:
                print("P")
            else:
                print("Q")
        elif a < b:
            res = solve(a + 1, a, 1)
            res2 = solve(a - 1, a, 1)
            if res == 0 or res2 == 0:
                print("P")
            else:
                print("Q")
        else:
            # a == b
            res = solve(a - 1, b, 1)
            if res == 0:
                print("P")
            else:
                print("Q")

            



if __name__ == '__main__':
    main()
0