結果

問題 No.106 素数が嫌い!2
ユーザー GrenacheGrenache
提出日時 2015-11-23 20:05:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 3,326 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 49,240 KB
最終ジャッジ日時 2024-09-13 17:17:41
合計ジャッジ時間 6,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
45,540 KB
testcase_01 AC 129 ms
41,360 KB
testcase_02 AC 128 ms
41,736 KB
testcase_03 AC 127 ms
41,200 KB
testcase_04 AC 152 ms
45,416 KB
testcase_05 AC 168 ms
49,240 KB
testcase_06 AC 168 ms
49,192 KB
testcase_07 AC 169 ms
48,992 KB
testcase_08 AC 137 ms
42,172 KB
testcase_09 AC 139 ms
42,136 KB
testcase_10 AC 167 ms
49,096 KB
testcase_11 AC 154 ms
44,544 KB
testcase_12 AC 169 ms
49,004 KB
testcase_13 AC 127 ms
41,476 KB
testcase_14 AC 128 ms
41,136 KB
testcase_15 AC 129 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder106 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int k = sc.nextInt();

        int[] cnt = new int[n + 1];
        for (int i = 2; i <= n; i++) {
        	if (cnt[i] == 0) {
        		for (int j = 1; i * j <= n; j++) {
        			cnt[i * j]++;
        		}
        	}
        }

        int ret = 0;
        for (int i = 2; i <= n; i++) {
        	if (cnt[i] >= k) {
        		ret++;
        	}
        }

        System.out.println(ret);

        sc.close();
    }
}
0