結果

問題 No.2813 Cookie
ユーザー detteiuudetteiuu
提出日時 2024-07-19 22:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 76,848 KB
最終ジャッジ日時 2024-07-19 22:32:27
合計ジャッジ時間 4,129 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 109 ms
76,672 KB
testcase_02 AC 127 ms
76,836 KB
testcase_03 AC 120 ms
76,612 KB
testcase_04 AC 120 ms
76,696 KB
testcase_05 AC 124 ms
76,800 KB
testcase_06 AC 114 ms
76,832 KB
testcase_07 AC 146 ms
76,544 KB
testcase_08 AC 124 ms
76,604 KB
testcase_09 AC 126 ms
76,848 KB
testcase_10 AC 139 ms
76,764 KB
testcase_11 AC 71 ms
76,160 KB
testcase_12 AC 68 ms
75,776 KB
testcase_13 AC 70 ms
76,000 KB
testcase_14 AC 70 ms
76,416 KB
testcase_15 AC 68 ms
75,776 KB
testcase_16 AC 70 ms
75,776 KB
testcase_17 AC 67 ms
75,648 KB
testcase_18 AC 76 ms
75,776 KB
testcase_19 AC 83 ms
75,984 KB
testcase_20 AC 74 ms
76,032 KB
testcase_21 AC 74 ms
75,648 KB
testcase_22 AC 64 ms
75,776 KB
testcase_23 AC 70 ms
76,080 KB
testcase_24 AC 71 ms
75,392 KB
testcase_25 AC 74 ms
76,032 KB
testcase_26 AC 38 ms
51,968 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 38 ms
52,224 KB
testcase_29 AC 42 ms
51,840 KB
testcase_30 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    grundy = 0
    for i in range(N):
        if A[i] <= 2:
            grundy ^= 1
        elif A[i] <= 4:
            grundy ^= 2
        elif A[i] <= 6:
            grundy ^= 4
        else:
            a = A[i]-7
            if a % 3 == 0:
                grundy ^= 6+a//3*4
            else:
                grundy ^= 6+a//3*4+2
    if grundy:
        print("Alice")
    else:
        print("Bob")
0