結果

問題 No.2103 ±1s Game
ユーザー chineristACchineristAC
提出日時 2022-10-21 23:44:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 582 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 57,832 KB
最終ジャッジ日時 2024-07-01 07:50:06
合計ジャッジ時間 2,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
56,124 KB
testcase_01 AC 47 ms
55,784 KB
testcase_02 AC 47 ms
56,160 KB
testcase_03 AC 47 ms
57,184 KB
testcase_04 AC 46 ms
57,008 KB
testcase_05 AC 48 ms
56,920 KB
testcase_06 AC 45 ms
56,776 KB
testcase_07 AC 45 ms
55,992 KB
testcase_08 AC 46 ms
57,832 KB
testcase_09 AC 46 ms
55,996 KB
testcase_10 AC 44 ms
56,492 KB
testcase_11 AC 45 ms
55,992 KB
testcase_12 AC 46 ms
56,960 KB
testcase_13 AC 45 ms
57,236 KB
testcase_14 AC 45 ms
57,292 KB
testcase_15 AC 46 ms
57,532 KB
testcase_16 AC 45 ms
56,660 KB
testcase_17 AC 46 ms
56,256 KB
testcase_18 AC 45 ms
56,516 KB
testcase_19 AC 45 ms
56,144 KB
testcase_20 AC 46 ms
55,900 KB
testcase_21 AC 46 ms
55,840 KB
testcase_22 AC 45 ms
57,108 KB
testcase_23 AC 46 ms
56,804 KB
testcase_24 AC 45 ms
56,208 KB
testcase_25 AC 45 ms
56,500 KB
testcase_26 AC 45 ms
55,716 KB
testcase_27 AC 46 ms
56,080 KB
testcase_28 AC 45 ms
56,564 KB
testcase_29 AC 46 ms
56,476 KB
testcase_30 AC 46 ms
55,960 KB
testcase_31 AC 45 ms
57,152 KB
testcase_32 AC 46 ms
56,648 KB
testcase_33 AC 45 ms
56,368 KB
testcase_34 AC 45 ms
56,040 KB
testcase_35 AC 46 ms
56,536 KB
testcase_36 AC 46 ms
57,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.buffer.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

X,Y,K,P = mi()

A,B = (X+Y-K+1)//2,(X+Y-K)//2

if X <= A and pow(-1,K) == P:
    exit(print("Alice"))
if Y <= A and P == 1:
    exit(print("Alice"))
if X <= B and pow(-1,K) != P:
    exit(print("Bob"))
if Y <= B and P == -1:
    exit(print("Bob"))

if (X+Y-K)&1:
    print("Alice")
else:
    print("Bob")
0