結果
問題 | No.1059 素敵な集合 |
ユーザー | tenten |
提出日時 | 2023-06-21 09:21:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 174 ms / 2,000 ms |
コード長 | 2,642 bytes |
コンパイル時間 | 2,726 ms |
コンパイル使用メモリ | 93,000 KB |
実行使用メモリ | 48,892 KB |
最終ジャッジ日時 | 2024-06-28 19:17:20 |
合計ジャッジ時間 | 5,072 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,172 KB |
testcase_01 | AC | 109 ms
39,484 KB |
testcase_02 | AC | 97 ms
41,140 KB |
testcase_03 | AC | 47 ms
36,872 KB |
testcase_04 | AC | 46 ms
37,144 KB |
testcase_05 | AC | 46 ms
36,924 KB |
testcase_06 | AC | 91 ms
40,460 KB |
testcase_07 | AC | 88 ms
40,252 KB |
testcase_08 | AC | 98 ms
41,024 KB |
testcase_09 | AC | 77 ms
38,784 KB |
testcase_10 | AC | 105 ms
40,936 KB |
testcase_11 | AC | 94 ms
39,704 KB |
testcase_12 | AC | 87 ms
39,928 KB |
testcase_13 | AC | 114 ms
41,740 KB |
testcase_14 | AC | 51 ms
37,128 KB |
testcase_15 | AC | 131 ms
44,644 KB |
testcase_16 | AC | 93 ms
41,028 KB |
testcase_17 | AC | 100 ms
40,616 KB |
testcase_18 | AC | 102 ms
48,892 KB |
testcase_19 | AC | 160 ms
42,648 KB |
testcase_20 | AC | 174 ms
44,448 KB |
testcase_21 | AC | 145 ms
45,036 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static final int MOD = 1000000007; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int left = sc.nextInt(); int right = sc.nextInt(); UnionFindTree uft = new UnionFindTree(right + 1); for (int i = left; i * 2 <= right; i++) { for (int j = 2; j * i <= right; j++) { uft.unite(i * j, i); } } HashSet<Integer> counts = new HashSet<>(); for (int i = left; i <= right; i++) { counts.add(uft.find(i)); } System.out.println(counts.size() - 1); } static class UnionFindTree { int[] parents; public UnionFindTree(int size) { parents = new int[size]; for (int i = 0; i < size; i++) { parents[i] = i; } } public int find(int x) { if (x == parents[x]) { return x; } else { return parents[x] = find(parents[x]); } } public boolean same(int x, int y) { return find(x) == find(y); } public void unite(int x, int y) { if (!same(x, y)) { parents[find(x)] = find(y); } } } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }