結果

問題 No.2813 Cookie
ユーザー 👑 rin204rin204
提出日時 2024-07-19 21:42:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 77,876 KB
最終ジャッジ日時 2024-07-19 21:42:59
合計ジャッジ時間 4,499 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 147 ms
77,300 KB
testcase_02 AC 146 ms
77,556 KB
testcase_03 AC 165 ms
77,312 KB
testcase_04 AC 164 ms
77,316 KB
testcase_05 AC 159 ms
77,876 KB
testcase_06 AC 154 ms
77,440 KB
testcase_07 AC 161 ms
77,356 KB
testcase_08 AC 145 ms
77,056 KB
testcase_09 AC 169 ms
77,580 KB
testcase_10 AC 166 ms
77,312 KB
testcase_11 AC 66 ms
75,648 KB
testcase_12 AC 67 ms
75,776 KB
testcase_13 AC 66 ms
75,692 KB
testcase_14 AC 67 ms
75,776 KB
testcase_15 AC 73 ms
75,896 KB
testcase_16 AC 76 ms
75,904 KB
testcase_17 AC 68 ms
75,392 KB
testcase_18 AC 65 ms
75,828 KB
testcase_19 AC 65 ms
75,392 KB
testcase_20 AC 66 ms
75,776 KB
testcase_21 AC 67 ms
75,520 KB
testcase_22 AC 64 ms
75,520 KB
testcase_23 AC 65 ms
75,752 KB
testcase_24 AC 63 ms
75,520 KB
testcase_25 AC 67 ms
75,724 KB
testcase_26 AC 42 ms
52,352 KB
testcase_27 AC 41 ms
51,584 KB
testcase_28 AC 39 ms
51,840 KB
testcase_29 AC 42 ms
51,968 KB
testcase_30 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = list(map(int, input().split()))
    x = 0
    for a in A:
        if a <= 2:
            x ^= 1
        elif a <= 4:
            x ^= 2
        else:
            c = (a - 5) // 3
            y = 4 * (c + 1)
            if a % 3 == 1:
                y += 2

            x ^= y
    print("Bob" if x == 0 else "Alice")


for _ in range(int(input())):
    solve()
0