結果
問題 | No.1059 素敵な集合 |
ユーザー | c-yan |
提出日時 | 2020-05-23 08:47:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 330 ms / 2,000 ms |
コード長 | 620 bytes |
コンパイル時間 | 404 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 12,800 KB |
最終ジャッジ日時 | 2024-07-23 09:36:52 |
合計ジャッジ時間 | 3,343 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 150 ms
12,288 KB |
testcase_02 | AC | 93 ms
11,776 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 75 ms
11,392 KB |
testcase_07 | AC | 76 ms
11,392 KB |
testcase_08 | AC | 94 ms
11,648 KB |
testcase_09 | AC | 45 ms
11,008 KB |
testcase_10 | AC | 113 ms
11,520 KB |
testcase_11 | AC | 77 ms
11,392 KB |
testcase_12 | AC | 57 ms
11,264 KB |
testcase_13 | AC | 129 ms
12,032 KB |
testcase_14 | AC | 34 ms
10,880 KB |
testcase_15 | AC | 205 ms
12,672 KB |
testcase_16 | AC | 85 ms
11,392 KB |
testcase_17 | AC | 84 ms
11,648 KB |
testcase_18 | AC | 84 ms
12,288 KB |
testcase_19 | AC | 330 ms
12,288 KB |
testcase_20 | AC | 313 ms
12,544 KB |
testcase_21 | AC | 205 ms
12,800 KB |
ソースコード
from sys import setrecursionlimit def find(parent, i): t = parent[i] if t < 0: return i t = find(parent, t) parent[i] = t return t def unite(parent, i, j): i = find(parent, i) j = find(parent, j) if i == j: return if i > j: i, j = j, i parent[i] += parent[j] parent[j] = i setrecursionlimit(10 ** 6) L, R = map(int, input().split()) parent = [-1] * (R + 1) for i in range(L, R): if parent[i] >= 0: continue for j in range(i * 2, R + 1, i): unite(parent, i, j) print(sum(1 for i in range(L, R + 1) if parent[i] < 0) - 1)