結果

問題 No.106 素数が嫌い!2
ユーザー kou6839kou6839
提出日時 2014-12-20 21:00:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 182 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 74,072 KB
実行使用メモリ 49,216 KB
最終ジャッジ日時 2024-06-12 02:41:18
合計ジャッジ時間 5,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,200 KB
testcase_01 AC 141 ms
41,148 KB
testcase_02 AC 135 ms
41,016 KB
testcase_03 AC 137 ms
41,464 KB
testcase_04 AC 159 ms
45,624 KB
testcase_05 AC 182 ms
48,984 KB
testcase_06 AC 181 ms
48,916 KB
testcase_07 AC 182 ms
49,112 KB
testcase_08 AC 149 ms
42,020 KB
testcase_09 AC 149 ms
41,840 KB
testcase_10 AC 179 ms
49,216 KB
testcase_11 AC 163 ms
44,700 KB
testcase_12 AC 179 ms
49,128 KB
testcase_13 AC 139 ms
41,448 KB
testcase_14 AC 137 ms
41,400 KB
testcase_15 AC 136 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

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