結果

問題 No.1059 素敵な集合
ユーザー shotoyooshotoyoo
提出日時 2021-05-06 19:30:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 847 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-09-14 10:48:08
合計ジャッジ時間 6,040 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 788 ms
79,232 KB
testcase_02 AC 125 ms
77,824 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 123 ms
77,696 KB
testcase_07 AC 123 ms
76,928 KB
testcase_08 AC 133 ms
77,440 KB
testcase_09 AC 99 ms
77,056 KB
testcase_10 AC 205 ms
77,312 KB
testcase_11 AC 128 ms
77,056 KB
testcase_12 AC 115 ms
77,440 KB
testcase_13 AC 183 ms
77,952 KB
testcase_14 AC 54 ms
61,696 KB
testcase_15 AC 312 ms
78,848 KB
testcase_16 AC 134 ms
77,824 KB
testcase_17 AC 121 ms
77,952 KB
testcase_18 AC 46 ms
59,904 KB
testcase_19 AC 807 ms
79,104 KB
testcase_20 AC 847 ms
79,744 KB
testcase_21 AC 270 ms
79,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")

class UF:
    # unionfind
    def __init__(self, n):
        self.n = n
        self.parent = list(range(n))
        self.size = [1] * n
    def check(self):
        return [self.root(i) for i in range(self.n)]
    def root(self, i):
        inter = set()
        while self.parent[i]!=i:
            inter.add(i)
            i = self.parent[i]
        r = i
        for i in inter:
            self.parent[i] = r
        return r
    def connect(self, i, j):
        # 繋いだかどうかを返す
        ri = self.root(i)
        rj = self.root(j)
        if ri==rj:
            return False
        if self.size[ri]<self.size[rj]:
            self.parent[ri] = rj
            self.size[rj] += self.size[ri]
        else:
            self.parent[rj] = ri
            self.size[ri] += self.size[rj]
        return True

l,r = list(map(int, input().split()))
uf = UF(r+1)
c = 0
for i in range(l,r):
    if i*2>r:
        break
    for p in range(i*2, r+1, i):
        if uf.connect(i,p):
            c += 1
ans = (r-l+1) - c - 1
print(ans)
0