結果

問題 No.2813 Cookie
ユーザー hato336hato336
提出日時 2024-07-20 13:16:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 90,372 KB
最終ジャッジ日時 2024-07-20 13:17:06
合計ジャッジ時間 6,441 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
85,576 KB
testcase_01 AC 154 ms
89,952 KB
testcase_02 AC 164 ms
90,212 KB
testcase_03 AC 156 ms
90,296 KB
testcase_04 AC 161 ms
89,924 KB
testcase_05 AC 159 ms
90,012 KB
testcase_06 AC 154 ms
90,112 KB
testcase_07 AC 157 ms
89,936 KB
testcase_08 AC 163 ms
90,368 KB
testcase_09 AC 159 ms
90,048 KB
testcase_10 AC 165 ms
90,372 KB
testcase_11 AC 147 ms
89,920 KB
testcase_12 AC 150 ms
90,292 KB
testcase_13 AC 151 ms
89,984 KB
testcase_14 AC 150 ms
90,148 KB
testcase_15 AC 148 ms
90,300 KB
testcase_16 AC 151 ms
89,876 KB
testcase_17 AC 145 ms
90,064 KB
testcase_18 AC 154 ms
90,112 KB
testcase_19 AC 155 ms
90,112 KB
testcase_20 AC 156 ms
90,112 KB
testcase_21 AC 158 ms
90,192 KB
testcase_22 AC 150 ms
90,052 KB
testcase_23 AC 151 ms
89,984 KB
testcase_24 AC 153 ms
89,824 KB
testcase_25 AC 149 ms
89,668 KB
testcase_26 AC 123 ms
85,472 KB
testcase_27 AC 121 ms
85,536 KB
testcase_28 AC 122 ms
85,580 KB
testcase_29 AC 122 ms
85,760 KB
testcase_30 AC 126 ms
85,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
#s = input()

input = sys.stdin.readline
t = int(input())
for i in range(t):
    n = int(input())
    a = list(map(int,input().split()))
    cnt = 0
    for j in a:
        cnt ^= ([0,1,1,2,2][j]) if j <= 4 else ((j - 5)//3 * 4 + 4 + (2 if (j-5)%3 == 2 else 0))
    if cnt == 0:
        print('Bob')
    else:
        print('Alice')
0