結果

問題 No.2813 Cookie
ユーザー mkawa2mkawa2
提出日時 2024-07-20 16:31:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 1,600 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-20 16:31:31
合計ジャッジ時間 3,935 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 78 ms
76,672 KB
testcase_02 AC 78 ms
76,032 KB
testcase_03 AC 77 ms
76,416 KB
testcase_04 AC 89 ms
76,160 KB
testcase_05 AC 82 ms
76,160 KB
testcase_06 AC 88 ms
76,288 KB
testcase_07 AC 86 ms
76,288 KB
testcase_08 AC 79 ms
76,544 KB
testcase_09 AC 80 ms
76,544 KB
testcase_10 AC 82 ms
76,288 KB
testcase_11 AC 69 ms
76,160 KB
testcase_12 AC 69 ms
75,648 KB
testcase_13 AC 74 ms
75,904 KB
testcase_14 AC 68 ms
76,032 KB
testcase_15 AC 67 ms
76,160 KB
testcase_16 AC 73 ms
76,288 KB
testcase_17 AC 70 ms
76,032 KB
testcase_18 AC 63 ms
75,776 KB
testcase_19 AC 66 ms
75,648 KB
testcase_20 AC 66 ms
75,904 KB
testcase_21 AC 68 ms
75,776 KB
testcase_22 AC 62 ms
75,520 KB
testcase_23 AC 64 ms
75,776 KB
testcase_24 AC 63 ms
75,648 KB
testcase_25 AC 65 ms
75,776 KB
testcase_26 AC 36 ms
51,712 KB
testcase_27 AC 36 ms
52,096 KB
testcase_28 AC 35 ms
51,712 KB
testcase_29 AC 40 ms
52,096 KB
testcase_30 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353


# n=II()
# dp=[[] for _ in range(n+1)]
# for a in range(1,n+1):
#     dp[a].append([a])
#     for c in range(1,a):
#         for l in dp[a-c]:
#             nl=l+[c]
#             nl.sort()
#             if nl in dp[a]:continue
#             dp[a].append(nl)
# p2D(dp)
#
# from functools import cache
#
# @cache
# def grundy(a):
#     st=set()
#     st.add(0)
#     for l in dp[a]:
#         if len(l)==1:continue
#         c=0
#         for b in l:c^=grundy(b)
#         st.add(c)
#     # print(a,st)
#     for g in range(a+5):
#         if g not in st:return g
#     return -1
#
# for a in range(1,n+1):
#     print(a,grundy(a))

def grundy(a):
    if a<6:return [0,1,1,2,2,4][a]
    g=a//3*4-4+a%3*2
    return g

for _ in range(II()):
    II()
    aa=LI()
    g=0
    for a in aa:g^=grundy(a)
    print("Alice" if g else "Bob")
0