結果
問題 | No.106 素数が嫌い!2 |
ユーザー | tenten |
提出日時 | 2023-12-18 11:07:34 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,129 bytes |
コンパイル時間 | 2,953 ms |
コンパイル使用メモリ | 91,868 KB |
実行使用メモリ | 634,596 KB |
最終ジャッジ日時 | 2024-09-27 08:20:49 |
合計ジャッジ時間 | 36,685 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,190 ms
324,744 KB |
testcase_01 | AC | 56 ms
36,900 KB |
testcase_02 | AC | 55 ms
36,912 KB |
testcase_03 | AC | 55 ms
37,008 KB |
testcase_04 | AC | 2,225 ms
325,124 KB |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | AC | 451 ms
73,800 KB |
testcase_09 | AC | 474 ms
76,844 KB |
testcase_10 | MLE | - |
testcase_11 | AC | 2,206 ms
323,996 KB |
testcase_12 | MLE | - |
testcase_13 | AC | 55 ms
36,972 KB |
testcase_14 | AC | 56 ms
36,684 KB |
testcase_15 | AC | 59 ms
37,648 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int k = sc.nextInt(); ArrayList<HashSet<Integer>> counts = new ArrayList<>(); int[] nums = new int[n + 1]; for (int i = 0; i <= n; i++) { counts.add(new HashSet<>()); nums[i] = i; } int ans = 0; for (int i = 2; i <= n; i++) { if (nums[i] > 1) { for (int j = 2; j * i <= n; j++) { nums[j * i] /= nums[i]; counts.get(j * i).add(nums[i]); } counts.get(i).add(nums[i]); } if (counts.get(i).size() >= k) { ans++; } } System.out.println(ans); } } 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(); } }