結果

問題 No.1059 素敵な集合
ユーザー anagohirameanagohirame
提出日時 2020-05-22 23:43:22
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 849 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 651,980 KB
最終ジャッジ日時 2024-10-05 21:54:28
合計ジャッジ時間 4,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,940 KB
testcase_01 MLE -
testcase_02 AC 156 ms
78,840 KB
testcase_03 AC 36 ms
53,808 KB
testcase_04 AC 36 ms
54,412 KB
testcase_05 AC 35 ms
53,372 KB
testcase_06 AC 125 ms
77,212 KB
testcase_07 AC 129 ms
77,836 KB
testcase_08 AC 156 ms
77,896 KB
testcase_09 AC 130 ms
77,856 KB
testcase_10 AC 174 ms
77,996 KB
testcase_11 AC 128 ms
77,512 KB
testcase_12 AC 119 ms
78,032 KB
testcase_13 AC 165 ms
78,628 KB
testcase_14 AC 49 ms
63,768 KB
testcase_15 AC 238 ms
79,348 KB
testcase_16 AC 121 ms
77,332 KB
testcase_17 AC 139 ms
78,632 KB
testcase_18 AC 45 ms
63,104 KB
testcase_19 AC 1,267 ms
364,256 KB
testcase_20 AC 941 ms
266,584 KB
testcase_21 AC 247 ms
79,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

class UnionFind():
	def __init__(self, size):
		self.table = [-1 for _ in range(size)]
		self.size = [1 for _ in range(size)]

	def find(self, x):
		if self.table[x] < 0:
			return x
		else:
			self.table[x] = self.find(self.table[x])
			return self.table[x]

	def unite(self, x, y):
		s1 = self.find(x)
		s2 = self.find(y)
		if s1 != s2:
			if self.table[s1] > self.table[s2]:
				self.table[s2] = s1
				self.table[s1] -= 1
				self.size[s1] += self.size[s2]
				self.size[s2] = 0
			else:
				self.table[s1] = s2
				self.table[s2] -= 1
				self.size[s2] += self.size[s1]
				self.size[s1] = 0

		return

l, r = map(int, input().split())
uf = UnionFind(r+1)
for i in range(l, r+1):
	for j in range(i*2, r+1, i):
		uf.unite(i, j)

ans = -1
for i in range(l, r+1):
	if uf.table[i] < 0:
		ans += 1
print(ans)
0