結果

問題 No.1059 素敵な集合
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-12-28 20:05:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 484 bytes
コンパイル時間 1,352 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 376,276 KB
最終ジャッジ日時 2024-12-28 20:05:41
合計ジャッジ時間 15,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 TLE -
testcase_02 AC 347 ms
100,720 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 44 ms
51,712 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 286 ms
94,720 KB
testcase_07 AC 287 ms
94,972 KB
testcase_08 AC 383 ms
105,204 KB
testcase_09 AC 155 ms
81,792 KB
testcase_10 AC 520 ms
124,680 KB
testcase_11 AC 350 ms
97,856 KB
testcase_12 AC 197 ms
87,936 KB
testcase_13 AC 565 ms
122,016 KB
testcase_14 AC 97 ms
76,912 KB
testcase_15 AC 965 ms
168,288 KB
testcase_16 AC 329 ms
101,092 KB
testcase_17 AC 339 ms
96,352 KB
testcase_18 AC 147 ms
92,800 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 878 ms
159,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R=map(int,input().split())
e=[]
for i in range(L,R+1):
  for j in range(i+i,R+1,i):
    if L<=i<j<=R:
      e+=[(0,i,j)]
  if i+1<=R:
    e+=[(1,i,i+1)]
e.sort()

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l+=[p]
  for p in l:
    r[p]=l[-1]
  return r[x]

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if rx>ry:
    rx,ry=ry,rx
  r[ry]=rx
  return

r=list(range(R+1))
g=0
for c,a,b in e:
  if root(a)!=root(b):
    g+=c
    union(a,b)
print(g)
0