結果

問題 No.1716 Bonus Nim
ユーザー wolgnikwolgnik
提出日時 2021-10-22 22:48:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 250 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 131,876 KB
最終ジャッジ日時 2024-09-23 06:33:21
合計ジャッジ時間 4,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,880 KB
testcase_01 AC 39 ms
51,812 KB
testcase_02 AC 40 ms
52,836 KB
testcase_03 AC 38 ms
52,088 KB
testcase_04 AC 127 ms
109,184 KB
testcase_05 AC 133 ms
114,948 KB
testcase_06 AC 131 ms
111,112 KB
testcase_07 AC 129 ms
105,220 KB
testcase_08 AC 128 ms
111,208 KB
testcase_09 AC 135 ms
107,676 KB
testcase_10 AC 131 ms
109,436 KB
testcase_11 AC 134 ms
107,540 KB
testcase_12 AC 127 ms
107,152 KB
testcase_13 AC 147 ms
130,420 KB
testcase_14 AC 134 ms
119,696 KB
testcase_15 AC 185 ms
77,052 KB
testcase_16 WA -
testcase_17 AC 37 ms
51,868 KB
testcase_18 AC 38 ms
53,012 KB
testcase_19 WA -
testcase_20 AC 38 ms
52,560 KB
testcase_21 WA -
testcase_22 AC 141 ms
119,480 KB
testcase_23 AC 140 ms
117,920 KB
testcase_24 AC 130 ms
114,904 KB
testcase_25 AC 147 ms
131,876 KB
testcase_26 AC 141 ms
118,144 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")
    else: print("Bob")
0