結果

問題 No.106 素数が嫌い!2
ユーザー kano_townkano_town
提出日時 2014-12-20 19:57:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 369 bytes
コンパイル時間 3,406 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 49,156 KB
最終ジャッジ日時 2024-06-12 02:35:22
合計ジャッジ時間 5,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
45,240 KB
testcase_01 AC 104 ms
41,164 KB
testcase_02 AC 114 ms
41,296 KB
testcase_03 AC 119 ms
41,056 KB
testcase_04 AC 142 ms
45,260 KB
testcase_05 AC 146 ms
49,108 KB
testcase_06 AC 145 ms
48,980 KB
testcase_07 AC 141 ms
49,116 KB
testcase_08 AC 127 ms
41,880 KB
testcase_09 AC 124 ms
41,560 KB
testcase_10 AC 150 ms
49,156 KB
testcase_11 AC 134 ms
44,776 KB
testcase_12 AC 152 ms
48,516 KB
testcase_13 AC 104 ms
41,376 KB
testcase_14 AC 117 ms
41,088 KB
testcase_15 AC 118 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yukicoder106 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt(), k=sc.nextInt(), res=0;
		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]++;
		for (int i=2; i<=n; i++) if (cnt[i]>=k) res++;
		System.out.println(res);
	}
}
0