結果

問題 No.2103 ±1s Game
ユーザー flygonflygon
提出日時 2022-10-21 22:20:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-07-01 06:54:59
合計ジャッジ時間 2,587 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,308 KB
testcase_01 AC 38 ms
51,768 KB
testcase_02 AC 42 ms
51,368 KB
testcase_03 AC 38 ms
53,192 KB
testcase_04 AC 37 ms
53,308 KB
testcase_05 AC 37 ms
52,496 KB
testcase_06 AC 37 ms
52,820 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
52,624 KB
testcase_10 AC 39 ms
53,304 KB
testcase_11 AC 38 ms
53,552 KB
testcase_12 AC 38 ms
52,688 KB
testcase_13 AC 38 ms
51,880 KB
testcase_14 AC 37 ms
52,304 KB
testcase_15 WA -
testcase_16 AC 37 ms
52,108 KB
testcase_17 WA -
testcase_18 AC 38 ms
52,268 KB
testcase_19 AC 38 ms
52,304 KB
testcase_20 AC 37 ms
51,892 KB
testcase_21 AC 37 ms
52,232 KB
testcase_22 AC 37 ms
52,492 KB
testcase_23 AC 38 ms
53,656 KB
testcase_24 AC 37 ms
52,324 KB
testcase_25 AC 38 ms
51,572 KB
testcase_26 AC 37 ms
52,052 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 37 ms
51,688 KB
testcase_30 AC 38 ms
52,568 KB
testcase_31 WA -
testcase_32 AC 37 ms
52,184 KB
testcase_33 AC 37 ms
52,356 KB
testcase_34 AC 37 ms
52,980 KB
testcase_35 AC 38 ms
52,472 KB
testcase_36 AC 38 ms
52,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,k,p = map(int,input().split())
at = (x+y-k+1)//2
bt = x+y-k-at
if p == 1:
  if at > bt:
    print("Alice")
  else:
    if y > at:
      print("Bob")
    else:
      print("Alice")
else:
  if at == bt:
    print("Bob")
  else:
    if y > bt:
      print("Alice")
    else:
      print("Bob")
0