結果

問題 No.106 素数が嫌い!2
ユーザー Mcpu3Mcpu3
提出日時 2019-03-25 13:58:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,823 ms / 5,000 ms
コード長 537 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 72,796 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-08 01:23:41
合計ジャッジ時間 13,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 720 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 722 ms
6,820 KB
testcase_05 AC 1,813 ms
6,816 KB
testcase_06 AC 1,823 ms
6,820 KB
testcase_07 AC 1,807 ms
6,820 KB
testcase_08 AC 55 ms
6,816 KB
testcase_09 AC 60 ms
6,816 KB
testcase_10 AC 1,817 ms
6,816 KB
testcase_11 AC 616 ms
6,816 KB
testcase_12 AC 1,733 ms
6,816 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;

//	vector
template<typename T>
vector<T> trialDivision(T a) {
	vector<T> res;
	T i = 2;
	while (i * i <= a) {
		if (a % i == 0) {
			a /= i;
			res.push_back(i);
		}
		else ++i;
	}
	if (a != 1) res.push_back(a);
	return res;
}

int main() {
	int N, K;
	cin >> N >> K;
	int ans = 0;
	for (int i = 2; i <= N; ++i) {
		vector<int> tmp = trialDivision(i);
		tmp.erase(unique(tmp.begin(), tmp.end()), tmp.end());
		if (K <= tmp.size()) ++ans;
	}
	cout << ans;
}
0