結果

問題 No.2103 ±1s Game
ユーザー ShirotsumeShirotsume
提出日時 2022-10-21 22:25:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-07-01 06:57:48
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,280 KB
testcase_01 AC 41 ms
51,756 KB
testcase_02 AC 38 ms
52,468 KB
testcase_03 WA -
testcase_04 AC 37 ms
52,008 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,864 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
53,296 KB
testcase_10 AC 37 ms
53,044 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 WA -
testcase_13 AC 39 ms
53,024 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
52,628 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
52,612 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 38 ms
52,760 KB
testcase_28 WA -
testcase_29 AC 38 ms
52,580 KB
testcase_30 WA -
testcase_31 AC 38 ms
51,868 KB
testcase_32 AC 38 ms
51,812 KB
testcase_33 AC 38 ms
52,340 KB
testcase_34 AC 38 ms
53,000 KB
testcase_35 WA -
testcase_36 AC 39 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

x, y, k, p = mi()
rem = x + y - 1
x -= 1
y -= 1

if x - (rem // 2) > 0 and y - (rem // 2) > 0:
    if rem % 2:
        print('Bob')
    else:
        print('Alice')
else:
    if x - (rem // 2) == 0:
        if (-1) ** (y + 1) == p:
            print('Alice')
        else:
            print('Bob')
    else:
        if (-1) ** (k - x - 1) == p:
            print('Alice')
        else:
            print('Bob') 
0