結果

問題 No.106 素数が嫌い!2
ユーザー 37zigen37zigen
提出日時 2016-05-20 12:33:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 463 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 60,168 KB
最終ジャッジ日時 2024-10-06 11:18:25
合計ジャッジ時間 4,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
57,372 KB
testcase_01 AC 123 ms
54,232 KB
testcase_02 AC 123 ms
54,208 KB
testcase_03 AC 121 ms
53,916 KB
testcase_04 AC 142 ms
58,092 KB
testcase_05 AC 153 ms
60,168 KB
testcase_06 AC 138 ms
59,292 KB
testcase_07 AC 151 ms
59,948 KB
testcase_08 AC 127 ms
54,020 KB
testcase_09 AC 118 ms
53,144 KB
testcase_10 AC 139 ms
59,368 KB
testcase_11 AC 142 ms
56,424 KB
testcase_12 AC 146 ms
60,152 KB
testcase_13 AC 117 ms
53,888 KB
testcase_14 AC 111 ms
52,808 KB
testcase_15 AC 119 ms
53,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int k=sc.nextInt();
		int[] list=new int[n+1];
		for(int i=2;i<=n;i++){
			if(list[i]==0){
				for(int j=1;j*i<=n;j++){
					list[i*j]++;
				}
			}
		}
		int count=0;
		for(int i=2;i<=n;i++){
			if(list[i]>=k)count++;
		}
		System.out.println(count);
	}
}
0