結果

問題 No.106 素数が嫌い!2
ユーザー kou6839kou6839
提出日時 2014-12-20 20:57:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 1,793 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 60,304 KB
最終ジャッジ日時 2024-06-12 02:39:29
合計ジャッジ時間 4,558 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 115 ms
54,104 KB
testcase_02 AC 114 ms
54,040 KB
testcase_03 WA -
testcase_04 AC 132 ms
58,276 KB
testcase_05 AC 144 ms
60,296 KB
testcase_06 AC 144 ms
60,304 KB
testcase_07 AC 147 ms
60,264 KB
testcase_08 AC 123 ms
54,052 KB
testcase_09 AC 122 ms
54,260 KB
testcase_10 AC 135 ms
59,536 KB
testcase_11 AC 130 ms
56,728 KB
testcase_12 AC 143 ms
60,196 KB
testcase_13 WA -
testcase_14 AC 116 ms
54,140 KB
testcase_15 AC 115 ms
54,112 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();
        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