結果

問題 No.106 素数が嫌い!2
ユーザー rf141rf141
提出日時 2015-08-13 09:12:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 468 bytes
コンパイル時間 2,998 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 49,376 KB
最終ジャッジ日時 2024-07-18 09:13:23
合計ジャッジ時間 5,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
44,476 KB
testcase_01 AC 119 ms
41,348 KB
testcase_02 AC 117 ms
41,156 KB
testcase_03 AC 120 ms
41,332 KB
testcase_04 AC 144 ms
45,256 KB
testcase_05 AC 153 ms
49,080 KB
testcase_06 AC 152 ms
49,092 KB
testcase_07 AC 157 ms
49,376 KB
testcase_08 AC 129 ms
41,076 KB
testcase_09 AC 135 ms
41,940 KB
testcase_10 AC 157 ms
49,220 KB
testcase_11 AC 146 ms
44,536 KB
testcase_12 AC 140 ms
48,648 KB
testcase_13 AC 115 ms
40,104 KB
testcase_14 AC 114 ms
40,284 KB
testcase_15 AC 115 ms
40,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class HatePrenum{
	public static void main(String... args){
		Scanner scan = new Scanner(System.in);
		HatePrenum hate = new HatePrenum();
		int N = scan.nextInt();
		int K = scan.nextInt();
		int[] d = new int[N+1];
		int res=0;
			for(int i = 2; i <= N; i++){
				if(d[i] == 0){
					for(int j = 1; i*j<=N; j++){
						d[i*j]++;
					}
				}
			}
			for(int i = 2; i <= N; i++){
				if(d[i]>=K)res++;
			}
			System.out.println(res);
		}
}
0