結果
問題 | No.106 素数が嫌い!2 |
ユーザー | stone_725 |
提出日時 | 2018-07-05 10:45:18 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 2,070 ms |
コンパイル使用メモリ | 165,760 KB |
実行使用メモリ | 15,096 KB |
最終ジャッジ日時 | 2024-05-07 17:48:33 |
合計ジャッジ時間 | 14,561 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<int> primes(1, 2); vector<bool> isPrime(static_cast<int>(2 * 1e6 + 1), true); map<int, int> dp; int cnt(int num, int now) { if (num == 1 && num < primes[now]) return 0; int numc = num; if (dp.count(num)) return dp[num]; if (num % primes[now]) { return dp[num] = cnt(num, now + 1); } while (num % primes[now] == 0) { num /= primes[now]; } return dp[numc] = 1 + cnt(num, now + 1); } void hawawa() { int n, k; cin >> n >> k; isPrime[0] = isPrime[1] = false; for (long long i = 3; i <= 2 * 1e6; i += 2) { if (!isPrime[i]) continue; for (long long j = i * i; j <= 2 * 1e6; j += i) { isPrime[j] = false; } primes.push_back(i); } int ans = 0; for (int i = n; i >= 2; i--) { if (k <= cnt(i, 0)) { ans++; } } cout << ans << "\n"; } int main() { ios::sync_with_stdio(false); cin.tie(0); hawawa(); return 0; }