結果

問題 No.1059 素敵な集合
ユーザー ValkyrjaValkyrja
提出日時 2020-05-23 03:31:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 827 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 323,764 KB
最終ジャッジ日時 2024-10-06 10:36:45
合計ジャッジ時間 21,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,532 ms
63,208 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 TLE -
testcase_03 AC 947 ms
56,176 KB
testcase_04 AC 943 ms
56,396 KB
testcase_05 AC 952 ms
56,520 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,164 ms
59,848 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r=map(int,input().split())
if l==1:
    print(0)
    exit()
import numpy as np
from scipy.sparse import csr_matrix
from scipy.sparse.csgraph import minimum_spanning_tree
def make_divisors(n):
    divisors = []
    global l
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            if l<=i:
                divisors.append(i)
            if i != n // i and l<=n//i:
                divisors.append(n//i)
    return divisors
d=[]
p=[]
q=[]

for i in range(l,r+1):
    ll=make_divisors(i)
    for m in ll:
        for j in range(m,i,m):
            p.append(i)
            q.append(j)
            d.append(0)
    if i!=l:
        p.append(i)
        q.append(i-1)
        d.append(1)

n=r+1
graph=csr_matrix((d,(p,q)),shape=(n,n))
tree = minimum_spanning_tree(graph,overwrite = True).astype(int)
print(tree.sum())
0