結果

問題 No.1059 素敵な集合
ユーザー tanon710tanon710
提出日時 2020-05-23 00:17:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 82,264 KB
最終ジャッジ日時 2024-07-23 09:35:42
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,916 KB
testcase_01 AC 104 ms
78,908 KB
testcase_02 AC 117 ms
78,936 KB
testcase_03 AC 38 ms
52,136 KB
testcase_04 AC 38 ms
52,524 KB
testcase_05 AC 38 ms
52,988 KB
testcase_06 AC 110 ms
77,604 KB
testcase_07 AC 107 ms
77,280 KB
testcase_08 AC 109 ms
78,392 KB
testcase_09 AC 97 ms
76,440 KB
testcase_10 AC 105 ms
78,136 KB
testcase_11 AC 108 ms
77,400 KB
testcase_12 AC 119 ms
77,356 KB
testcase_13 AC 114 ms
79,332 KB
testcase_14 AC 56 ms
68,456 KB
testcase_15 AC 124 ms
81,344 KB
testcase_16 AC 114 ms
78,100 KB
testcase_17 AC 108 ms
78,172 KB
testcase_18 AC 60 ms
79,356 KB
testcase_19 AC 112 ms
79,560 KB
testcase_20 AC 130 ms
80,408 KB
testcase_21 AC 132 ms
82,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind():
  def __init__(self,n):
    self.n=n
    self.root=[-1]*(n+1)
    self.rank=[0]*(n+1)
  def FindRoot(self,x):
    if self.root[x]<0:
      return x
    else:
      self.root[x]=self.FindRoot(self.root[x])
      return self.root[x]
  def Unite(self,x,y):
    x=self.FindRoot(x)
    y=self.FindRoot(y)
    if x==y:
      return
    else:
      if self.rank[x]>self.rank[y]:
        self.root[x]+=self.root[y]
        self.root[y]=x
      elif self.rank[x]<=self.rank[y]:
        self.root[y]+=self.root[x]
        self.root[x]=y
        if self.rank[x]==self.rank[y]:
          self.rank[y]+=1
  def isSameGroup(self,x,y):
    return self.FindRoot(x)==self.FindRoot(y)
  def Count(self,x):
    return -self.root[self.FindRoot(x)]

l,r=map(int,input().split())
t=UnionFind(r+1)
for i in range(l,r+1):
    for j in range(2,r//l+1):
        if i*j>r:
            break
        t.Unite(i,i*j)
ans=0
s=set()
for i in range(l,r+1):
    if t.FindRoot(i) in s:
        continue
    else:
        s.add(t.FindRoot(i))
        ans+=1
print(ans-1)
0