結果

問題 No.2103 ±1s Game
ユーザー ShirotsumeShirotsume
提出日時 2022-10-21 23:09:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 570 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-07-01 07:28:02
合計ジャッジ時間 2,640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

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()

if y % 2:
    p = -p
k = (x + y - k)

if y <= (k + 1) // 2 and (-1) ** y == p:
    print('Alice')
    exit()
if x <= (k + 1) // 2 and (-1) ** (k - x) ==p:
    print('Alice')
    exit()

if y <= k // 2 and (-1) ** y != p:
    print('Bob')
    exit()
if x <= k // 2 and (-1) ** (k - x) != p:
    print('Bob')
    exit()

if k % 2:
    print('Alice')
else:
    print('Bob')
0