結果

問題 No.2103 ±1s Game
ユーザー flygonflygon
提出日時 2022-10-22 14:44:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-07-01 16:31:31
合計ジャッジ時間 2,683 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,424 KB
testcase_01 AC 40 ms
51,936 KB
testcase_02 AC 39 ms
53,236 KB
testcase_03 AC 42 ms
52,432 KB
testcase_04 AC 38 ms
52,816 KB
testcase_05 AC 38 ms
52,312 KB
testcase_06 AC 37 ms
52,248 KB
testcase_07 AC 37 ms
53,432 KB
testcase_08 AC 37 ms
52,824 KB
testcase_09 AC 38 ms
53,304 KB
testcase_10 AC 37 ms
51,620 KB
testcase_11 AC 38 ms
52,704 KB
testcase_12 AC 37 ms
52,820 KB
testcase_13 AC 38 ms
52,160 KB
testcase_14 AC 36 ms
52,320 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
52,240 KB
testcase_20 AC 38 ms
52,768 KB
testcase_21 AC 38 ms
52,832 KB
testcase_22 AC 38 ms
51,684 KB
testcase_23 AC 38 ms
52,464 KB
testcase_24 AC 38 ms
52,236 KB
testcase_25 AC 38 ms
52,200 KB
testcase_26 AC 37 ms
52,256 KB
testcase_27 WA -
testcase_28 AC 38 ms
53,172 KB
testcase_29 AC 39 ms
51,748 KB
testcase_30 AC 38 ms
52,760 KB
testcase_31 AC 38 ms
51,696 KB
testcase_32 AC 38 ms
52,244 KB
testcase_33 AC 36 ms
52,840 KB
testcase_34 AC 38 ms
52,700 KB
testcase_35 AC 37 ms
52,108 KB
testcase_36 AC 38 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,k,p = map(int,input().split())
left = x+y-k
if left & 1:
  if x <= left//2:
    yy = y - (k-x)
    tmp = pow(-1, yy)
    if tmp == p:
      print("Alice")
    else:
      print("Bob")
  elif y <= left//2:
    tmp = 1
    if tmp == p:
      print("Alice")
    else:
      print("Bob")
  else:
    print("Alice")
else:
  if x <= left//2:
    yy = y - (k-x)
    tmp = pow(-1, yy)
    if tmp == p:
      print("Alice")
    else:
      print("Bob")
  elif y <= left//2:
    tmp = 1
    if tmp == p:
      print("Alice")
    else:
      print("Bob")
  else:
    print("Bob")
0