結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,236 KB
testcase_01 AC 39 ms
52,340 KB
testcase_02 AC 39 ms
51,944 KB
testcase_03 AC 39 ms
53,168 KB
testcase_04 AC 38 ms
52,084 KB
testcase_05 AC 38 ms
52,848 KB
testcase_06 AC 38 ms
51,900 KB
testcase_07 AC 38 ms
53,580 KB
testcase_08 AC 38 ms
52,876 KB
testcase_09 AC 38 ms
51,648 KB
testcase_10 AC 39 ms
52,320 KB
testcase_11 AC 39 ms
52,284 KB
testcase_12 AC 39 ms
52,756 KB
testcase_13 AC 39 ms
52,484 KB
testcase_14 AC 38 ms
53,124 KB
testcase_15 AC 38 ms
52,656 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
52,032 KB
testcase_19 AC 39 ms
52,108 KB
testcase_20 AC 39 ms
52,188 KB
testcase_21 AC 39 ms
53,636 KB
testcase_22 AC 38 ms
52,684 KB
testcase_23 AC 39 ms
53,244 KB
testcase_24 AC 39 ms
52,000 KB
testcase_25 AC 39 ms
52,020 KB
testcase_26 AC 38 ms
52,636 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 39 ms
52,892 KB
testcase_30 AC 39 ms
52,608 KB
testcase_31 WA -
testcase_32 AC 40 ms
52,404 KB
testcase_33 AC 38 ms
52,228 KB
testcase_34 AC 39 ms
52,424 KB
testcase_35 AC 38 ms
52,576 KB
testcase_36 AC 38 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y,K,P = map(int,input().split())
cnt = X+Y-K #引く回数
A_cnt = cnt//2+cnt%2
B_cnt = cnt//2
if P==1:
    if A_cnt >= Y: print("Alice");exit()
    if B_cnt >= X: print("Alice");exit()
    if A_cnt == B_cnt: print("Bob");exit()
    else:print("Alice");exit()

else:
    if B_cnt >= Y: print("Bob");exit()
    if B_cnt >= X: print("Alice");exit()
    if A_cnt == B_cnt: print("Bob");exit()
    else:print("Alice");exit()
0