結果

問題 No.1059 素敵な集合
ユーザー ああいいああいい
提出日時 2022-01-27 19:33:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 944 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 825 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 237,440 KB
最終ジャッジ日時 2024-06-07 16:50:53
合計ジャッジ時間 5,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 944 ms
237,440 KB
testcase_02 AC 132 ms
78,464 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 106 ms
77,056 KB
testcase_07 AC 107 ms
76,672 KB
testcase_08 AC 116 ms
77,696 KB
testcase_09 AC 120 ms
76,800 KB
testcase_10 AC 143 ms
77,440 KB
testcase_11 AC 110 ms
77,568 KB
testcase_12 AC 135 ms
77,056 KB
testcase_13 AC 139 ms
78,336 KB
testcase_14 AC 55 ms
64,640 KB
testcase_15 AC 182 ms
79,616 KB
testcase_16 AC 120 ms
77,440 KB
testcase_17 AC 116 ms
77,952 KB
testcase_18 AC 59 ms
76,416 KB
testcase_19 AC 904 ms
158,720 KB
testcase_20 AC 847 ms
122,624 KB
testcase_21 AC 195 ms
80,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R = map(int,input().split())

parent = list(range(R+1))
import sys
sys.setrecursionlimit(10 ** 8)
def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[I] = J
    parent[i] = J
    return True
def isSame(i,j):
    return find(i) == find(j)

for i in range(L,R+1):
    for j in range(i * 2,R+1,i):
        unite(i,j)
ans = 0
s = set()
for i in range(L,R+1):
    s.add(find(i))
print(len(s) - 1)
0