結果
問題 | No.1059 素敵な集合 |
ユーザー | Shinya Fujita |
提出日時 | 2024-10-05 12:20:37 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 145 ms / 2,000 ms |
コード長 | 855 bytes |
コンパイル時間 | 252 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 83,220 KB |
最終ジャッジ日時 | 2024-10-05 12:20:41 |
合計ジャッジ時間 | 3,064 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,412 KB |
testcase_01 | AC | 83 ms
77,824 KB |
testcase_02 | AC | 97 ms
79,136 KB |
testcase_03 | AC | 35 ms
52,480 KB |
testcase_04 | AC | 35 ms
52,352 KB |
testcase_05 | AC | 36 ms
51,840 KB |
testcase_06 | AC | 92 ms
77,940 KB |
testcase_07 | AC | 96 ms
77,676 KB |
testcase_08 | AC | 100 ms
78,880 KB |
testcase_09 | AC | 89 ms
76,356 KB |
testcase_10 | AC | 98 ms
78,628 KB |
testcase_11 | AC | 97 ms
77,608 KB |
testcase_12 | AC | 97 ms
76,868 KB |
testcase_13 | AC | 98 ms
79,812 KB |
testcase_14 | AC | 53 ms
65,920 KB |
testcase_15 | AC | 113 ms
81,944 KB |
testcase_16 | AC | 93 ms
78,352 KB |
testcase_17 | AC | 95 ms
78,660 KB |
testcase_18 | AC | 64 ms
79,488 KB |
testcase_19 | AC | 100 ms
80,664 KB |
testcase_20 | AC | 145 ms
81,504 KB |
testcase_21 | AC | 111 ms
83,220 KB |
ソースコード
L, R = map(int, input().split()) class UnionFind: def __init__(self, n=1): self.parent = [i for i in range(n)] self.rank = [0] * n def find(self, x): if self.parent[x] == x: return x else: self.parent[x] = self.find(self.parent[x]) return self.parent[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.rank[x] < self.rank[y]: x, y = y, x if self.rank[x] == self.rank[y]: self.rank[x] += 1 self.parent[y] = x def is_same(self, x, y): return self.find(x) == self.find(y) uf = UnionFind(R-L+1) for i in range(L, R): for j in range(i, R+1, i): uf.union(i-L, j-L) print(len(set([uf.find(i) for i in range(R-L+1)]))-1)