結果

問題 No.1716 Bonus Nim
ユーザー zkouzkou
提出日時 2021-09-24 22:52:48
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 295 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 133,716 KB
最終ジャッジ日時 2024-09-23 03:49:42
合計ジャッジ時間 5,259 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
51,776 KB
testcase_04 AC 132 ms
111,824 KB
testcase_05 AC 135 ms
116,004 KB
testcase_06 AC 137 ms
114,472 KB
testcase_07 AC 130 ms
106,644 KB
testcase_08 AC 133 ms
112,896 KB
testcase_09 AC 139 ms
109,848 KB
testcase_10 AC 130 ms
112,232 KB
testcase_11 AC 138 ms
110,276 KB
testcase_12 AC 132 ms
109,444 KB
testcase_13 AC 151 ms
133,020 KB
testcase_14 AC 138 ms
121,592 KB
testcase_15 AC 645 ms
77,528 KB
testcase_16 WA -
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 42 ms
51,968 KB
testcase_19 WA -
testcase_20 AC 41 ms
51,840 KB
testcase_21 WA -
testcase_22 AC 152 ms
122,336 KB
testcase_23 AC 144 ms
120,908 KB
testcase_24 AC 135 ms
117,480 KB
testcase_25 AC 151 ms
133,716 KB
testcase_26 AC 145 ms
121,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    As = list(map(int, input().split()))
    if N % 2 == 1:
        print("Alice")
    else:
        nim = 0
        for A in As:
            nim ^= (A - 1)
        if nim:
            print("Alice")
        else:
            print("Bob")
0