結果

問題 No.103 素因数ゲーム リターンズ
ユーザー s_shoheis_shohei
提出日時 2021-09-27 20:43:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 835 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,592 KB
最終ジャッジ日時 2024-07-06 16:56:25
合計ジャッジ時間 2,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
73,600 KB
testcase_01 AC 69 ms
74,112 KB
testcase_02 AC 66 ms
73,472 KB
testcase_03 AC 67 ms
73,600 KB
testcase_04 AC 67 ms
73,984 KB
testcase_05 AC 68 ms
73,344 KB
testcase_06 AC 70 ms
74,112 KB
testcase_07 AC 70 ms
73,600 KB
testcase_08 AC 68 ms
73,344 KB
testcase_09 AC 68 ms
73,472 KB
testcase_10 AC 65 ms
73,560 KB
testcase_11 AC 67 ms
73,600 KB
testcase_12 AC 77 ms
75,008 KB
testcase_13 AC 73 ms
75,008 KB
testcase_14 AC 71 ms
75,264 KB
testcase_15 AC 66 ms
75,136 KB
testcase_16 AC 64 ms
73,728 KB
testcase_17 AC 68 ms
75,136 KB
testcase_18 AC 69 ms
74,240 KB
testcase_19 AC 69 ms
76,592 KB
testcase_20 AC 68 ms
74,368 KB
testcase_21 AC 69 ms
75,004 KB
testcase_22 AC 67 ms
74,368 KB
testcase_23 AC 67 ms
75,008 KB
testcase_24 AC 67 ms
74,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
M = 10**6
bp = [0] * (M+10)
for i in range(2, M+10):
    if bp[i] == 0:
        bp[i] = i
        for j in range(i*i, M+1, i):
            bp[j] = i
def fact(n):
    arr=[]
    while n>1:
        now=n
        cnt=0
        p=bp[now]
        while now % p == 0:
            now//=p
            cnt+=1
        arr.append([p,cnt])
        n=now
    return arr

from functools import lru_cache
@lru_cache(maxsize=None)
def grundy(n):
    f = fact(n)
    if len(f)==0:
        return 0 # prime
    s=set()
    for p,cnt in f:
        s.add(n//p)
        if cnt>=2:
            s.add(n//(p*p))
    g_set = set([grundy(i) for i in s])
    g = 0
    while g in g_set:
        g+=1
    return g

xor=0
for num in a:
    xor^=grundy(num)
if xor==0:
    print("Bob")
else:
    print("Alice")
0