結果

問題 No.2813 Cookie
ユーザー vwxyzvwxyz
提出日時 2024-09-07 00:46:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-07 00:46:57
合計ジャッジ時間 6,327 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 122 ms
10,880 KB
testcase_02 AC 145 ms
10,752 KB
testcase_03 AC 117 ms
10,880 KB
testcase_04 AC 172 ms
10,752 KB
testcase_05 AC 181 ms
10,752 KB
testcase_06 AC 145 ms
10,752 KB
testcase_07 AC 168 ms
10,752 KB
testcase_08 AC 144 ms
10,752 KB
testcase_09 AC 189 ms
10,752 KB
testcase_10 AC 173 ms
10,880 KB
testcase_11 AC 113 ms
12,288 KB
testcase_12 AC 110 ms
12,032 KB
testcase_13 AC 109 ms
12,032 KB
testcase_14 AC 114 ms
12,160 KB
testcase_15 AC 110 ms
12,288 KB
testcase_16 AC 112 ms
12,032 KB
testcase_17 AC 121 ms
12,288 KB
testcase_18 AC 100 ms
12,160 KB
testcase_19 AC 104 ms
12,160 KB
testcase_20 AC 104 ms
11,776 KB
testcase_21 AC 125 ms
12,160 KB
testcase_22 AC 100 ms
11,904 KB
testcase_23 AC 98 ms
12,160 KB
testcase_24 AC 97 ms
11,904 KB
testcase_25 AC 111 ms
12,032 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

@lru_cache(maxsize=None)
def check(N):
    st=set()
    st.add(0)
    if N>=2:
        for bit in range(1,1<<N-1):
            bound=[0]
            for i in range(N-1):
                if bit&1<<i:
                    bound.append(i+1)
            bound.append(N)
            g=0
            for l,r in zip(bound,bound[1:]):
                g^=check(r-l)
            st.add(g)
    g=0
    while g in st:
        g+=1
    return g

def grundy(N):
    if N<=2:
        retu=1
    elif N<=4:
        retu=2
    else:
        N-=5
        if N%3<2:
            retu=N//3*4+4
        else:
            retu=N//3*4+6
    return retu

T=int(input())
for t in range(T):
    N=int(input())
    A=list(map(int,input().split()))
    g=0
    for a in A:
        g^=grundy(a)
    if g:
        ans="Alice"
    else:
        ans="Bob"
    print(ans)
0