結果

問題 No.1917 LCMST
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-30 10:28:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,775 ms / 4,000 ms
コード長 1,124 bytes
コンパイル時間 694 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 275,908 KB
最終ジャッジ日時 2024-06-29 16:07:58
合計ジャッジ時間 57,276 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
64,512 KB
testcase_01 AC 56 ms
64,512 KB
testcase_02 AC 56 ms
64,384 KB
testcase_03 AC 96 ms
78,464 KB
testcase_04 AC 85 ms
74,752 KB
testcase_05 AC 97 ms
78,720 KB
testcase_06 AC 93 ms
78,336 KB
testcase_07 AC 94 ms
78,336 KB
testcase_08 AC 57 ms
64,256 KB
testcase_09 AC 2,410 ms
274,160 KB
testcase_10 AC 2,480 ms
274,536 KB
testcase_11 AC 2,322 ms
273,372 KB
testcase_12 AC 1,879 ms
265,132 KB
testcase_13 AC 692 ms
243,248 KB
testcase_14 AC 2,070 ms
266,672 KB
testcase_15 AC 481 ms
243,604 KB
testcase_16 AC 703 ms
243,472 KB
testcase_17 AC 984 ms
243,732 KB
testcase_18 AC 1,243 ms
244,636 KB
testcase_19 AC 591 ms
244,120 KB
testcase_20 AC 501 ms
243,472 KB
testcase_21 AC 605 ms
243,180 KB
testcase_22 AC 472 ms
243,344 KB
testcase_23 AC 459 ms
243,812 KB
testcase_24 AC 595 ms
244,244 KB
testcase_25 AC 468 ms
243,860 KB
testcase_26 AC 515 ms
243,100 KB
testcase_27 AC 528 ms
244,112 KB
testcase_28 AC 552 ms
244,000 KB
testcase_29 AC 2,737 ms
275,464 KB
testcase_30 AC 2,772 ms
275,724 KB
testcase_31 AC 2,775 ms
275,208 KB
testcase_32 AC 2,761 ms
275,720 KB
testcase_33 AC 2,753 ms
275,908 KB
testcase_34 AC 251 ms
225,424 KB
testcase_35 AC 252 ms
224,916 KB
testcase_36 AC 254 ms
225,300 KB
testcase_37 AC 2,735 ms
275,412 KB
testcase_38 AC 2,721 ms
275,592 KB
testcase_39 AC 2,729 ms
275,464 KB
testcase_40 AC 2,737 ms
275,552 KB
testcase_41 AC 2,692 ms
275,728 KB
testcase_42 AC 2,606 ms
275,484 KB
testcase_43 AC 290 ms
236,432 KB
testcase_44 AC 294 ms
236,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]


n = int(input())
A = list(map(int,input().split()))
M = 10**5+5
ans = 0
count = [0]*M
for a in A:
    if count[a]:
        ans += a
    else:
        count[a] = 1


edge = []
uf = Unionfind(M)
for i in range(1,M):
    find = 0
    for j in range(i,M,i):
        if count[j] == 0:
            continue
        if find:
            edge.append([j*find//i,find,j])
        else:
            find = j

edge.sort()
for cost,x,y in edge:
    if uf.union(x,y):
        ans += cost
print(ans)
0