結果

問題 No.1716 Bonus Nim
ユーザー tassei903tassei903
提出日時 2021-10-22 22:00:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 133,516 KB
最終ジャッジ日時 2024-09-23 05:27:31
合計ジャッジ時間 4,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,140 KB
testcase_01 AC 36 ms
52,360 KB
testcase_02 AC 37 ms
52,208 KB
testcase_03 AC 37 ms
51,808 KB
testcase_04 AC 125 ms
112,340 KB
testcase_05 AC 127 ms
116,220 KB
testcase_06 AC 124 ms
114,400 KB
testcase_07 AC 120 ms
106,900 KB
testcase_08 AC 122 ms
112,724 KB
testcase_09 AC 128 ms
110,144 KB
testcase_10 AC 123 ms
111,628 KB
testcase_11 AC 126 ms
110,600 KB
testcase_12 AC 122 ms
109,456 KB
testcase_13 AC 145 ms
133,280 KB
testcase_14 AC 131 ms
121,864 KB
testcase_15 AC 192 ms
76,884 KB
testcase_16 WA -
testcase_17 AC 38 ms
53,188 KB
testcase_18 AC 37 ms
51,944 KB
testcase_19 WA -
testcase_20 AC 37 ms
53,296 KB
testcase_21 WA -
testcase_22 AC 133 ms
121,940 KB
testcase_23 AC 132 ms
121,092 KB
testcase_24 AC 126 ms
118,008 KB
testcase_25 AC 137 ms
133,516 KB
testcase_26 AC 134 ms
121,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
t = ni()
for _ in range(t):
    n = ni()
    a = na()
    if n%2:
        print("Alice")
        continue
    z = 0
    for i in range(n):
        z^=(a[i]-1)
    if z:
        print("Alice")
    else:
        print("Bob")
0