結果
問題 | No.106 素数が嫌い!2 |
ユーザー | data9824 |
提出日時 | 2015-05-31 04:16:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 471 ms / 5,000 ms |
コード長 | 1,087 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 63,196 KB |
実行使用メモリ | 7,920 KB |
最終ジャッジ日時 | 2024-07-06 12:53:42 |
合計ジャッジ時間 | 4,377 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 206 ms
6,588 KB |
testcase_01 | AC | 2 ms
5,504 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 201 ms
6,640 KB |
testcase_05 | AC | 471 ms
7,920 KB |
testcase_06 | AC | 469 ms
6,380 KB |
testcase_07 | AC | 468 ms
6,384 KB |
testcase_08 | AC | 20 ms
5,760 KB |
testcase_09 | AC | 22 ms
5,504 KB |
testcase_10 | AC | 467 ms
6,384 KB |
testcase_11 | AC | 173 ms
6,440 KB |
testcase_12 | AC | 445 ms
7,668 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main() { int n, k; cin >> n >> k; static const int MAX_N = 2000000; static bool isPrime[MAX_N + 1]; fill(&isPrime[0], &isPrime[MAX_N] + 1, true); isPrime[0] = false; isPrime[1] = false; for (int i = 2; i <= n; ++i) { if (isPrime[i]) { for (int k = i * 2; k <= n; k += i) { isPrime[k] = false; } } } vector<int> primes; for (int i = 0; i <= n; ++i) { if (isPrime[i]) { primes.push_back(i); } } static bool hasManyFactors[MAX_N + 1] = { false }; for (int x = 2; x <= n; ++x) { int remaining = x; int factorCount = 0; for (size_t i = 0; primes[i] * primes[i] <= remaining; ++i) { bool isFactor = false; while (remaining % primes[i] == 0) { remaining /= primes[i]; isFactor = true; } if (isFactor) { ++factorCount; } } if (remaining > 1) { ++factorCount; } if (factorCount >= k) { hasManyFactors[x] = true; } } int result = count(&hasManyFactors[0], &hasManyFactors[n] + 1, true); cout << result << endl; return 0; }