結果

問題 No.1716 Bonus Nim
ユーザー tamatotamato
提出日時 2021-10-22 21:33:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 132,004 KB
最終ジャッジ日時 2024-09-23 04:49:26
合計ジャッジ時間 4,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 141 ms
109,248 KB
testcase_05 AC 146 ms
115,024 KB
testcase_06 AC 139 ms
111,232 KB
testcase_07 AC 130 ms
105,328 KB
testcase_08 AC 130 ms
111,248 KB
testcase_09 AC 138 ms
107,500 KB
testcase_10 AC 126 ms
109,600 KB
testcase_11 AC 138 ms
107,772 KB
testcase_12 AC 129 ms
107,180 KB
testcase_13 AC 158 ms
131,616 KB
testcase_14 AC 137 ms
120,096 KB
testcase_15 AC 179 ms
77,444 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 #

mod = 1000000007
eps = 10**-9


def main():
    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:
            g = 0
            for a in A:
                g ^= a
            if g:
                print("Alice")
            else:
                print("Bob")


if __name__ == '__main__':
    main()
0