結果

問題 No.106 素数が嫌い!2
ユーザー tentententen
提出日時 2020-11-17 19:22:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 598 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 60,484 KB
最終ジャッジ日時 2024-07-23 08:25:22
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
58,108 KB
testcase_01 AC 130 ms
54,312 KB
testcase_02 AC 127 ms
53,928 KB
testcase_03 AC 128 ms
53,972 KB
testcase_04 AC 152 ms
58,228 KB
testcase_05 AC 160 ms
60,484 KB
testcase_06 AC 162 ms
60,476 KB
testcase_07 AC 164 ms
60,312 KB
testcase_08 AC 142 ms
54,000 KB
testcase_09 AC 142 ms
54,084 KB
testcase_10 AC 164 ms
60,388 KB
testcase_11 AC 154 ms
57,088 KB
testcase_12 AC 161 ms
60,232 KB
testcase_13 AC 131 ms
54,076 KB
testcase_14 AC 132 ms
54,300 KB
testcase_15 AC 132 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int[] counts = new int[n + 1];
        for (int i = 2; i <= n; i++) {
            if (counts[i] == 0) {
                for (int j = 1; j * i <= n; j++) {
                    counts[j * i]++;
                }
            }
        }
        int ans = 0;
        for (int x : counts) {
            if (x >= k) {
                ans++;
            }
        }
        System.out.println(ans);
    }
}
0