結果

問題 No.2103 ±1s Game
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-21 22:11:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 53,828 KB
最終ジャッジ日時 2024-07-01 06:46:32
合計ジャッジ時間 2,950 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,316 KB
testcase_01 AC 38 ms
52,244 KB
testcase_02 AC 37 ms
53,340 KB
testcase_03 AC 38 ms
52,064 KB
testcase_04 AC 38 ms
52,028 KB
testcase_05 AC 38 ms
52,260 KB
testcase_06 AC 38 ms
52,340 KB
testcase_07 AC 38 ms
52,552 KB
testcase_08 AC 39 ms
52,628 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
52,176 KB
testcase_12 AC 38 ms
52,744 KB
testcase_13 AC 38 ms
52,216 KB
testcase_14 AC 38 ms
53,316 KB
testcase_15 AC 38 ms
53,128 KB
testcase_16 AC 37 ms
52,484 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 38 ms
53,216 KB
testcase_20 AC 39 ms
52,408 KB
testcase_21 AC 38 ms
52,028 KB
testcase_22 AC 38 ms
52,820 KB
testcase_23 AC 38 ms
52,272 KB
testcase_24 AC 38 ms
52,604 KB
testcase_25 AC 38 ms
52,440 KB
testcase_26 AC 38 ms
52,832 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 37 ms
52,396 KB
testcase_30 AC 38 ms
53,484 KB
testcase_31 WA -
testcase_32 AC 38 ms
52,680 KB
testcase_33 WA -
testcase_34 AC 37 ms
52,416 KB
testcase_35 AC 39 ms
53,820 KB
testcase_36 AC 38 ms
51,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,k,p = map(int,input().split())

turn = x+y-k

first = (turn+1)//2
second = turn//2

# print(turn,first,second)
if turn%2:
    first,second = second,first

def ans(x,turn):
    turn %= 2
    # print(x,turn)
    if x == 0:
        print("Bob" if turn else "Alice")
    else:
        print("Bob" if turn == 0 else "Alice")
    exit()

if first >= y and p == 1:
    ans(0,turn)
    
if first >= x and pow(-1,(y-(turn-x))%2) == p:
    ans(0,turn)

ans(1,turn)
    
0