結果

問題 No.2756 GCD Teleporter
ユーザー titiatitia
提出日時 2024-05-14 04:21:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,860 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 137,900 KB
最終ジャッジ日時 2024-05-14 04:22:08
合計ジャッジ時間 15,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,316 KB
testcase_01 AC 59 ms
67,284 KB
testcase_02 AC 60 ms
67,488 KB
testcase_03 AC 59 ms
68,148 KB
testcase_04 AC 139 ms
83,028 KB
testcase_05 AC 258 ms
88,040 KB
testcase_06 AC 434 ms
110,688 KB
testcase_07 AC 375 ms
101,392 KB
testcase_08 AC 365 ms
98,640 KB
testcase_09 AC 322 ms
95,032 KB
testcase_10 AC 411 ms
102,684 KB
testcase_11 AC 531 ms
116,744 KB
testcase_12 AC 190 ms
86,036 KB
testcase_13 AC 500 ms
114,736 KB
testcase_14 AC 482 ms
108,700 KB
testcase_15 AC 204 ms
86,088 KB
testcase_16 AC 310 ms
95,096 KB
testcase_17 AC 368 ms
98,660 KB
testcase_18 AC 192 ms
85,980 KB
testcase_19 AC 516 ms
113,120 KB
testcase_20 AC 413 ms
111,200 KB
testcase_21 AC 249 ms
92,100 KB
testcase_22 AC 439 ms
109,292 KB
testcase_23 AC 145 ms
83,040 KB
testcase_24 AC 342 ms
100,776 KB
testcase_25 AC 368 ms
104,052 KB
testcase_26 AC 404 ms
111,388 KB
testcase_27 AC 411 ms
112,152 KB
testcase_28 AC 299 ms
94,200 KB
testcase_29 AC 372 ms
101,376 KB
testcase_30 AC 471 ms
113,044 KB
testcase_31 AC 269 ms
91,496 KB
testcase_32 AC 289 ms
109,528 KB
testcase_33 AC 164 ms
90,124 KB
testcase_34 AC 133 ms
83,680 KB
testcase_35 AC 336 ms
108,540 KB
testcase_36 AC 350 ms
108,240 KB
testcase_37 RE -
testcase_38 AC 489 ms
113,936 KB
testcase_39 AC 591 ms
137,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

mod=998244353

# エラトステネスの篩を用いた素因数分解・約数列挙
MAX=5*10**5+10 # 使いたい最大値を指定

# Sieve[i]で、iの最も小さい約数を返す。
Sieve=[i for i in range(MAX)]

for i in range(2,MAX):
    if Sieve[i]!=i:
        continue
    
    for j in range(i,MAX,i):
        if Sieve[j]==j:
            Sieve[j]=i

# 素因数分解
def fact(x):
    D=dict()
    while x!=1:
        k=Sieve[x]
        if k in D:
            D[k]+=1
        else:
            D[k]=1
        x//=k
    return D

# 約数列挙
def faclist(x):
    LIST=[1]
    while x!=1:
        k=Sieve[x]
        count=0
        while x%k==0:
            count+=1
            x//=k

        LIST2=[]
        for l in LIST:
            for i in range(1,count+1):
                LIST2.append(l*k**i)
        LIST+=LIST2

    return LIST

LIST=[]
for a in A:
    LIST+=fact(a)

LIST=sorted(set(LIST))
D={LIST[i]:i for i in range(len(LIST))}

E=[[] for i in range(N+len(LIST))]

n=N+len(LIST)

# UnionFind

Group = [i for i in range(n)] # グループ分け
Nodes = [1]*(n) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for i in range(N):
    a=A[i]
    for u in fact(a):
        Union(i,D[u]+N)

#print([find(i) for i in range(n)])
k=LIST[0]

c=0
for i in range(n):
    if find(i)==i:
        c+=1

ANS=k*(c-1)
ANS2=2*c

print(min(ANS,ANS2))
0