結果
問題 | No.106 素数が嫌い!2 |
ユーザー | sahiya |
提出日時 | 2021-03-02 19:26:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 50 ms / 5,000 ms |
コード長 | 1,622 bytes |
コンパイル時間 | 1,560 ms |
コンパイル使用メモリ | 113,316 KB |
実行使用メモリ | 18,964 KB |
最終ジャッジ日時 | 2024-10-03 01:56:58 |
合計ジャッジ時間 | 2,591 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
11,264 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 15 ms
11,136 KB |
testcase_05 | AC | 39 ms
18,944 KB |
testcase_06 | AC | 44 ms
18,944 KB |
testcase_07 | AC | 38 ms
18,944 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 46 ms
18,964 KB |
testcase_11 | AC | 14 ms
10,496 KB |
testcase_12 | AC | 50 ms
18,432 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <climits> #include <cmath> #include <cstring> #include <deque> #include <forward_list> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <queue> #include <set> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; typedef long long ll; typedef pair<int, int> P; typedef bitset<16> BS; struct edge { int to, cost, id; }; const double EPS = 1E-09; const ll MOD = 1E+09 + 7; // =998244353; const ll INF = 1E18; const int MAX_N = 2E+06; ll dx[4] = { -1, 1, 0, 0 }, dy[4] = { 0, 0, -1, 1 }; int N, K; ll spf[MAX_N + 1]; //spf[i]はiの素因数のうち最小のものを示す void smallest_prime_factor(ll n); int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin >> N >> K; smallest_prime_factor(N); int ans = 0; for (int i = 2; i <= N; i++) { // cout << "i = " << i << ", spf = " << spf[i] << "\n"; if (spf[i] >= K) ans++; } /* for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n"; } } */ cout << ans << "\n"; return 0; } //n以下のspfを求める void smallest_prime_factor(ll n) { for (ll i = 2; i <= n; i++) { if (spf[i] == 0) { for (ll j = i; j <= n; j += i) { spf[j]++; } } } }