結果

問題 No.2103 ±1s Game
ユーザー titiatitia
提出日時 2022-10-22 06:12:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 1,126 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 10,956 KB
実行使用メモリ 818,996 KB
最終ジャッジ日時 2023-09-14 03:43:57
合計ジャッジ時間 22,981 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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