結果

問題 No.1059 素敵な集合
ユーザー nephrologistnephrologist
提出日時 2020-05-22 23:43:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 77,656 KB
最終ジャッジ日時 2024-07-23 09:34:50
合計ジャッジ時間 2,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,436 KB
testcase_01 AC 73 ms
66,152 KB
testcase_02 AC 86 ms
76,628 KB
testcase_03 AC 38 ms
53,036 KB
testcase_04 AC 40 ms
52,000 KB
testcase_05 AC 37 ms
52,656 KB
testcase_06 AC 83 ms
76,172 KB
testcase_07 AC 84 ms
76,308 KB
testcase_08 AC 84 ms
76,620 KB
testcase_09 AC 81 ms
75,860 KB
testcase_10 AC 81 ms
75,328 KB
testcase_11 AC 86 ms
76,348 KB
testcase_12 AC 90 ms
75,844 KB
testcase_13 AC 90 ms
76,484 KB
testcase_14 AC 44 ms
60,824 KB
testcase_15 AC 99 ms
77,492 KB
testcase_16 AC 86 ms
76,360 KB
testcase_17 AC 88 ms
76,696 KB
testcase_18 AC 41 ms
60,356 KB
testcase_19 AC 87 ms
69,500 KB
testcase_20 AC 96 ms
74,172 KB
testcase_21 AC 96 ms
77,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l, r = map(int, input().split())


# union-find
# xの根を求める


def find(x):
    if par[x] < 0:
        return x
    else:
        par[x] = find(par[x])
        return par[x]


# xとyの属する集合の併合
def unite(x, y):
    x = find(x)
    y = find(y)
    if x == y:
        return False
    else:
        # sizeの大きい方をxとする
        if par[x] > par[y]:
            x, y = y, x
        par[x] += par[y]
        par[y] = x
        return True


# xとyが同じ集合か判定
def is_same(x, y):
    return find(x) == find(y)


def size(x):
    return -par[find(x)]


# 初期化
# 根なら-size、子なら親の頂点
par = [-1] * (r - l + 1)

cnt = 0
# cost 0で貼ることのできる辺を処理する
for i in range(l, r + 1):
    j = 2 * i
    while j < r + 1:
        if unite(i - l, j - l):
            cnt += 1
        j += i
print(r - l + -cnt)
0