結果
問題 | No.144 エラトステネスのざる |
ユーザー | tsugutsugu |
提出日時 | 2023-06-15 00:24:25 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 191 ms / 2,000 ms |
コード長 | 1,127 bytes |
コンパイル時間 | 3,295 ms |
コンパイル使用メモリ | 251,984 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-06-23 05:08:06 |
合計ジャッジ時間 | 5,284 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 177 ms
7,488 KB |
testcase_14 | AC | 187 ms
7,680 KB |
testcase_15 | AC | 188 ms
7,488 KB |
testcase_16 | AC | 191 ms
7,664 KB |
testcase_17 | AC | 188 ms
7,552 KB |
testcase_18 | AC | 189 ms
7,496 KB |
testcase_19 | AC | 176 ms
7,472 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "debug.hpp" #else #define debug(...) 1 #endif vector<int> sieve(int n) { vector<int> min_factor(n + 1); for (int i = 1; i <= n; i++) { min_factor[i] = i; } for (int i = 2; i * i <= n; i++) { if (min_factor[i] == i) { for (int j = i + i; j <= n; j += i) { if (min_factor[j] > i) { min_factor[j] = i; } } } } return min_factor; } map<int, int> factor(vector<int> &min_factor, int m) { map<int, int> ret; while (m > 1) { ret[min_factor[m]]++; m /= min_factor[m]; } return ret; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; auto v = sieve(n); double p; cin >> p; double ans = 0; for (int i = 2; i <= n; i++) { auto mp = factor(v, i); int cnt = 1; for (auto [x, y] : mp) { cnt *= (y + 1); } ans += pow(1 - p, cnt - 2); } cout << fixed << setprecision(15) << ans << '\n'; }