結果

問題 No.2103 ±1s Game
ユーザー tassei903tassei903
提出日時 2022-10-21 21:58:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,060 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 53,820 KB
最終ジャッジ日時 2024-07-01 06:31:53
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,292 KB
testcase_01 AC 38 ms
53,472 KB
testcase_02 AC 37 ms
53,124 KB
testcase_03 AC 38 ms
53,280 KB
testcase_04 AC 38 ms
52,564 KB
testcase_05 AC 38 ms
53,704 KB
testcase_06 AC 38 ms
52,200 KB
testcase_07 AC 38 ms
52,516 KB
testcase_08 AC 39 ms
52,612 KB
testcase_09 AC 38 ms
52,804 KB
testcase_10 AC 38 ms
52,836 KB
testcase_11 AC 38 ms
52,060 KB
testcase_12 AC 39 ms
52,344 KB
testcase_13 AC 38 ms
53,124 KB
testcase_14 AC 37 ms
53,120 KB
testcase_15 WA -
testcase_16 AC 38 ms
52,548 KB
testcase_17 WA -
testcase_18 AC 38 ms
53,308 KB
testcase_19 AC 38 ms
52,232 KB
testcase_20 AC 38 ms
53,820 KB
testcase_21 AC 38 ms
51,948 KB
testcase_22 AC 39 ms
52,464 KB
testcase_23 AC 39 ms
52,784 KB
testcase_24 AC 37 ms
52,900 KB
testcase_25 AC 38 ms
52,984 KB
testcase_26 AC 39 ms
53,572 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
52,964 KB
testcase_30 AC 38 ms
52,252 KB
testcase_31 WA -
testcase_32 AC 38 ms
52,952 KB
testcase_33 AC 38 ms
52,904 KB
testcase_34 AC 38 ms
52,612 KB
testcase_35 AC 37 ms
53,156 KB
testcase_36 AC 37 ms
51,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

def f(x,y,k,p,z):
    if k == x + y:
        if p == y % 2:
            return 1
        return 0
    if z:
        res = 0
        if x:
            res |= f(x-1, y, k, p, 0)
        if y:
            res |= f(x, y-1, k, p, 0)
        return res
    else:
        res = 1
        if x:
            res &= f(x-1, y, k, p, 1)
        if y:
            res &= f(x, y-1, k, p, 1)
        return res
x,y,k,p = na()
if p == 1:
    if y <= (x + y - k  + 1)//2:
        ans = 1
    elif (x + y - k) % 2:
        ans = 1
    else:
        ans = 0
else:
    if y <= (x + y - k)//2:
        ans = 0
    elif (x + y - k) % 2:
        ans = 1
    else:
        ans = 0
if ans:
    print("Alice")
else:
    print("Bob")
0