結果

問題 No.1716 Bonus Nim
ユーザー wolgnikwolgnik
提出日時 2021-10-22 23:36:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 131,952 KB
最終ジャッジ日時 2024-09-24 06:23:50
合計ジャッジ時間 4,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,704 KB
testcase_01 AC 34 ms
52,984 KB
testcase_02 AC 32 ms
52,480 KB
testcase_03 AC 32 ms
52,824 KB
testcase_04 AC 120 ms
110,124 KB
testcase_05 AC 124 ms
115,288 KB
testcase_06 AC 120 ms
111,344 KB
testcase_07 AC 119 ms
105,068 KB
testcase_08 AC 117 ms
110,040 KB
testcase_09 AC 127 ms
107,572 KB
testcase_10 AC 118 ms
109,748 KB
testcase_11 AC 126 ms
107,604 KB
testcase_12 AC 122 ms
107,300 KB
testcase_13 AC 140 ms
130,204 KB
testcase_14 AC 131 ms
118,680 KB
testcase_15 AC 176 ms
77,016 KB
testcase_16 AC 34 ms
53,116 KB
testcase_17 AC 35 ms
53,292 KB
testcase_18 AC 34 ms
52,348 KB
testcase_19 WA -
testcase_20 AC 34 ms
52,552 KB
testcase_21 WA -
testcase_22 AC 133 ms
119,212 KB
testcase_23 AC 132 ms
118,316 KB
testcase_24 AC 124 ms
114,768 KB
testcase_25 AC 139 ms
131,952 KB
testcase_26 AC 133 ms
116,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
for _ in range(int(input())):
  N = int(input())
  a = list(map(int, input().split()))
  if N & 1: print("Alice")
  else:
    nim = 0
    for x in a: nim ^= x - 1
    if nim:
      print("Alice")
      continue
    nim = 0
    for x in a: nim ^= x
    if nim: print("Alice")
    else: print("Bob")
0