結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,556 KB
testcase_01 AC 38 ms
52,564 KB
testcase_02 AC 38 ms
53,764 KB
testcase_03 AC 38 ms
52,600 KB
testcase_04 AC 126 ms
109,284 KB
testcase_05 AC 132 ms
114,740 KB
testcase_06 AC 130 ms
110,912 KB
testcase_07 AC 129 ms
105,584 KB
testcase_08 AC 125 ms
111,016 KB
testcase_09 AC 132 ms
107,748 KB
testcase_10 AC 126 ms
109,700 KB
testcase_11 AC 133 ms
107,712 KB
testcase_12 AC 126 ms
107,180 KB
testcase_13 AC 145 ms
131,732 KB
testcase_14 AC 134 ms
120,260 KB
testcase_15 AC 189 ms
77,064 KB
testcase_16 WA -
testcase_17 AC 39 ms
53,168 KB
testcase_18 AC 39 ms
53,420 KB
testcase_19 WA -
testcase_20 AC 39 ms
53,160 KB
testcase_21 WA -
testcase_22 AC 141 ms
120,784 KB
testcase_23 AC 138 ms
117,768 KB
testcase_24 AC 126 ms
116,636 KB
testcase_25 AC 145 ms
132,080 KB
testcase_26 AC 138 ms
119,720 KB
権限があれば一括ダウンロードができます

ソースコード

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-1
            if g:
                print("Alice")
            else:
                print("Bob")


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