結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 38 ms
51,876 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 WA -
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 99 ms
102,052 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 98 ms
101,988 KB
testcase_16 AC 99 ms
101,960 KB
testcase_17 WA -
testcase_18 AC 97 ms
101,892 KB
testcase_19 AC 98 ms
101,984 KB
testcase_20 WA -
testcase_21 AC 99 ms
101,816 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
now = 0
for i in range(1, n):
  if i % 2 == 1: continue
  now ^= a[i]
if now == 0:
  print("Bob")
else:
  print("Alice")
0