結果
問題 | No.106 素数が嫌い!2 |
ユーザー | tenten |
提出日時 | 2023-02-14 15:05:00 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 117 ms / 5,000 ms |
コード長 | 1,975 bytes |
コンパイル時間 | 2,833 ms |
コンパイル使用メモリ | 88,092 KB |
実行使用メモリ | 59,796 KB |
最終ジャッジ日時 | 2024-07-17 04:23:10 |
合計ジャッジ時間 | 4,845 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
55,464 KB |
testcase_01 | AC | 53 ms
50,440 KB |
testcase_02 | AC | 53 ms
50,300 KB |
testcase_03 | AC | 54 ms
50,376 KB |
testcase_04 | AC | 87 ms
55,412 KB |
testcase_05 | AC | 117 ms
59,664 KB |
testcase_06 | AC | 113 ms
59,796 KB |
testcase_07 | AC | 111 ms
59,532 KB |
testcase_08 | AC | 65 ms
50,736 KB |
testcase_09 | AC | 70 ms
51,556 KB |
testcase_10 | AC | 115 ms
59,704 KB |
testcase_11 | AC | 87 ms
53,820 KB |
testcase_12 | AC | 114 ms
59,572 KB |
testcase_13 | AC | 54 ms
50,296 KB |
testcase_14 | AC | 53 ms
50,472 KB |
testcase_15 | AC | 53 ms
50,528 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(); int ans = 0; boolean[] isNotPrimes = new boolean[n + 1]; int[] counts = new int[n + 1]; for (int i = 2; i <= n; i++) { if (!isNotPrimes[i]) { counts[i]++; for (int j = 2; j * i <= n; j++) { counts[j * i]++; isNotPrimes[j * i] = true; } } if (counts[i] >= 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(); } }