結果

問題 No.106 素数が嫌い!2
ユーザー satanicsatanic
提出日時 2016-04-23 15:25:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 808 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 68,000 KB
実行使用メモリ 12,384 KB
最終ジャッジ日時 2024-10-04 15:20:03
合計ジャッジ時間 1,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
11,584 KB
testcase_01 AC 3 ms
10,964 KB
testcase_02 AC 4 ms
10,892 KB
testcase_03 AC 4 ms
10,856 KB
testcase_04 AC 15 ms
11,540 KB
testcase_05 AC 27 ms
12,380 KB
testcase_06 AC 30 ms
12,384 KB
testcase_07 AC 26 ms
12,164 KB
testcase_08 AC 4 ms
11,048 KB
testcase_09 AC 4 ms
11,084 KB
testcase_10 AC 28 ms
12,256 KB
testcase_11 AC 14 ms
11,600 KB
testcase_12 AC 26 ms
12,368 KB
testcase_13 AC 2 ms
10,884 KB
testcase_14 AC 3 ms
10,984 KB
testcase_15 AC 2 ms
11,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>

std::vector<int> GetPrimeVec(int n){
	std::vector<bool> num(n, true);
	std::vector<int> prime;
	num[0]=false;
	for(int i=0; i<std::sqrt(n); ++i){
		if(num[i]){
			for(int j=2; (i+1)*j<=n; ++j){
				num[(i+1)*j-1] = false;
			}
		}
	}
	for(int i=0; i<n; ++i){
		if(num[i]){
			prime.push_back(i+1);
		}
	}
	return prime;
}

std::vector<int> count(2e6, 0);

int main(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    
    int n, k;
    std::cin >> n >> k;
    std::vector<int> primeToN(GetPrimeVec(n));
    int ans = 0;
    for(auto p : primeToN){
        for(int i=1; p*i<=n; ++i){
            ++count[p*i-1];
        }
    }
    for(int i=0; i<n; ++i){
        if(count[i]>=k) ++ans;
    }
    std::cout << ans << "\n";

    return 0;
}
0