結果

問題 No.106 素数が嫌い!2
ユーザー ldsybldsyb
提出日時 2017-06-25 20:17:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 64,456 KB
実行使用メモリ 11,256 KB
最終ジャッジ日時 2024-10-04 09:08:32
合計ジャッジ時間 1,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,220 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 10 ms
7,376 KB
testcase_05 AC 22 ms
11,220 KB
testcase_06 AC 22 ms
11,256 KB
testcase_07 AC 21 ms
11,120 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 3 ms
6,820 KB
testcase_10 AC 24 ms
11,160 KB
testcase_11 AC 8 ms
6,852 KB
testcase_12 AC 22 ms
10,972 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
	int n, k;
	cin >> n >> k;
	int ans = 0, puni[n + 1]{};
	for(int i = 2; i <= n; i++){
		if(puni[i] == 0){
			for(int j = 2 * i; j <= n; j += i) puni[j]++;
			puni[i]++;
		}
		if(k <= puni[i]) ans++;
	}
	cout << ans << endl;
}
0