結果

問題 No.103 素因数ゲーム リターンズ
ユーザー titiatitia
提出日時 2022-01-21 01:41:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 838 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-05-03 13:15:02
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
13,312 KB
testcase_01 AC 93 ms
13,440 KB
testcase_02 AC 99 ms
13,440 KB
testcase_03 AC 93 ms
13,440 KB
testcase_04 AC 92 ms
13,440 KB
testcase_05 AC 92 ms
13,312 KB
testcase_06 AC 92 ms
13,440 KB
testcase_07 AC 95 ms
13,440 KB
testcase_08 AC 94 ms
13,312 KB
testcase_09 AC 94 ms
13,312 KB
testcase_10 AC 95 ms
13,440 KB
testcase_11 AC 93 ms
13,440 KB
testcase_12 AC 93 ms
13,312 KB
testcase_13 AC 93 ms
13,440 KB
testcase_14 AC 93 ms
13,312 KB
testcase_15 AC 92 ms
13,312 KB
testcase_16 AC 93 ms
13,312 KB
testcase_17 AC 93 ms
13,184 KB
testcase_18 AC 92 ms
13,440 KB
testcase_19 AC 93 ms
13,312 KB
testcase_20 AC 94 ms
13,312 KB
testcase_21 AC 92 ms
13,312 KB
testcase_22 AC 93 ms
13,312 KB
testcase_23 AC 93 ms
13,440 KB
testcase_24 AC 94 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def fact(x):
    L=int(math.sqrt(x))

    FACT=dict()

    for i in range(2,L+2):
        while x%i==0:
            FACT[i]=FACT.get(i,0)+1
            x=x//i

    if x!=1:
        FACT[x]=FACT.get(x,0)+1

    return FACT


FACT=[dict() for i in range(10**4+5)]
for i in range(1,10**4+1):
    FACT[i]=fact(i)


def grundy(x):
    if x==1:
        return 0
    
    LIST=[]

    for f in FACT[x]:
        LIST.append(G[x//f])

        if (x//f)%f==0:
            LIST.append(G[x//f//f])

    SET=set(LIST)
    
    for i in range(10**9):
        if i in SET:
            continue
        else:
            G[x]=i
            break

G=[0]*(10**4+5)
for i in range(1,10**4+5):
    grundy(i)

N=int(input())
A=list(map(int,input().split()))

XOR=0

for a in A:
    XOR^=G[a]

if XOR!=0:
    print("Alice")
else:
    print("Bob")
0