結果

問題 No.1716 Bonus Nim
ユーザー tassei903tassei903
提出日時 2021-10-22 21:47:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 133,784 KB
最終ジャッジ日時 2024-09-23 05:11:50
合計ジャッジ時間 4,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,312 KB
testcase_01 AC 37 ms
52,760 KB
testcase_02 AC 37 ms
52,508 KB
testcase_03 AC 37 ms
53,428 KB
testcase_04 AC 123 ms
112,996 KB
testcase_05 AC 128 ms
116,452 KB
testcase_06 AC 127 ms
114,576 KB
testcase_07 AC 120 ms
106,888 KB
testcase_08 AC 124 ms
112,804 KB
testcase_09 AC 126 ms
109,716 KB
testcase_10 AC 121 ms
111,952 KB
testcase_11 AC 127 ms
110,504 KB
testcase_12 AC 124 ms
109,308 KB
testcase_13 AC 146 ms
133,140 KB
testcase_14 AC 133 ms
122,196 KB
testcase_15 AC 194 ms
77,496 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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]
    if z:
        print("Alice")
    else:
        print("Bob")
0