結果

問題 No.2059 Odd Move Nim
ユーザー flygonflygon
提出日時 2022-09-19 17:30:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 248 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,400 KB
最終ジャッジ日時 2024-06-01 16:19:30
合計ジャッジ時間 2,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
51,712 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 38 ms
52,352 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 96 ms
102,020 KB
testcase_13 WA -
testcase_14 AC 94 ms
101,888 KB
testcase_15 AC 94 ms
102,016 KB
testcase_16 WA -
testcase_17 AC 94 ms
101,888 KB
testcase_18 AC 94 ms
102,144 KB
testcase_19 AC 95 ms
102,144 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
c = a[1] + a[2]*2
cnt = 0
for i in range(3,n):
  cnt += a[i]
if c % 2 == 1:
  if cnt > 0:
    print("Bob")
  else:
    print("Alice")
else:
  if cnt > 0:
    print("Alice")
  else:
   print("Bob")
0