結果

問題 No.1059 素敵な集合
ユーザー convexineqconvexineq
提出日時 2020-05-22 21:34:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 79,632 KB
最終ジャッジ日時 2024-07-23 09:25:15
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,320 KB
testcase_01 AC 460 ms
79,516 KB
testcase_02 AC 92 ms
77,684 KB
testcase_03 AC 38 ms
52,204 KB
testcase_04 AC 37 ms
53,064 KB
testcase_05 AC 37 ms
53,028 KB
testcase_06 AC 88 ms
77,228 KB
testcase_07 AC 88 ms
77,204 KB
testcase_08 AC 95 ms
77,596 KB
testcase_09 AC 77 ms
76,612 KB
testcase_10 AC 131 ms
77,616 KB
testcase_11 AC 94 ms
77,148 KB
testcase_12 AC 88 ms
76,832 KB
testcase_13 AC 127 ms
77,980 KB
testcase_14 AC 48 ms
63,012 KB
testcase_15 AC 191 ms
79,112 KB
testcase_16 AC 92 ms
77,260 KB
testcase_17 AC 88 ms
77,144 KB
testcase_18 AC 45 ms
62,448 KB
testcase_19 AC 467 ms
79,632 KB
testcase_20 AC 462 ms
79,140 KB
testcase_21 AC 164 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.parent = list(range(n)) #親ノード
        self.size = [1]*n #グループの要素数
 
    def root(self, x): #root(x): xの根ノードを返す.
        while self.parent[x] != x:
            self.parent[x] = self.parent[self.parent[x]]
            x = self.parent[x]
        return x 
 
    def merge(self, x, y): #merge(x,y): xのいる組とyのいる組をまとめる
        x, y = self.root(x), self.root(y)
        if x == y: return False
        if self.size[x] < self.size[y]: x,y=y,x #xの要素数が大きいように
        self.size[x] += self.size[y] #xの要素数を更新
        self.parent[y] = x #yをxにつなぐ
        return True
 
    def issame(self, x, y): #same(x,y): xとyが同じ組ならTrue
        return self.root(x) == self.root(y)
        
    def getsize(self,x): #size(x): xのいるグループの要素数を返す
        return self.size[self.root(x)]

# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read

l,r = [int(i) for i in readline().split()]


UF = UnionFind(r+1)
res = r-l+1
for i in range(l,r+1):
    for j in range(i+i,r+1,i):
        if UF.merge(i,j):
            res -= 1


print(res-1)



0