結果

問題 No.2103 ±1s Game
ユーザー titiatitia
提出日時 2022-10-22 06:12:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,126 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-07-01 11:33:47
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 30 ms
10,752 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 WA -
testcase_16 WA -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 29 ms
10,752 KB
testcase_35 RE -
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

sys.setrecursionlimit(10**7)

from functools import lru_cache
@lru_cache(maxsize=None)
def game(X,Y,te,now,P):
    #print(X,Y)
    if X+Y<K-3:
        X%=2
        Y%=2
        
        return game(X,Y,te,now,P)

    if X+Y>K+3:
        minus=(X+Y-K+3)

        minusX=minus*X//(X+Y)//2*2
        minusY=minus*Y//(X+Y)//2*2
        X-=minusX
        Y-=minusY

        return game(X,Y,te,now,P)
        
    if X+Y==K:
        if now==P:
            return te
        else:
            return te^1

    if te==1:
        ANS=0
        
        if X>0:
            if game(X-1,Y,te^1,now,P)==1:
                ANS=1
        if Y>0:
            if game(X,Y-1,te^1,-now,P)==1:
                ANS=1

        return ANS

    else:
        ANS=1
        
        if X>0:
            if game(X-1,Y,te^1,now,P)==0:
                ANS=0
        if Y>0:
            if game(X,Y-1,te^1,-now,P)==0:
                ANS=0

        return ANS


X,Y,K,P=map(int,input().split())

now=1
if Y%2==-1:
    now=-1

ANS=game(X,Y,0,now,P)

if ANS==0:
    print("Alice")
else:
    print("Bob")
            
0