結果

問題 No.144 エラトステネスのざる
ユーザー KyutatsuKyutatsu
提出日時 2025-01-01 04:06:54
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 4,795 ms
コンパイル使用メモリ 275,196 KB
実行使用メモリ 7,632 KB
最終ジャッジ日時 2025-01-01 04:07:01
合計ジャッジ時間 5,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 46 ms
7,344 KB
testcase_14 AC 53 ms
7,404 KB
testcase_15 AC 53 ms
7,532 KB
testcase_16 AC 53 ms
7,476 KB
testcase_17 AC 53 ms
7,632 KB
testcase_18 AC 55 ms
7,552 KB
testcase_19 AC 42 ms
7,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iomanip>
#include <functional>
#include <sstream>
#include <bit>

using namespace std;

int main() {
    // ある数字の約数の数だけ、pの確率である数が除去されうる.
    int N; cin >> N;
    double P; cin >> P;

    double res = 0;
    vector<int> divisor_cnt(N+1);
    for (int i=2;i<=N;i++) {
        for (int j=i;j<=N;j+=i) divisor_cnt[j]++;
        double p = pow(1.0 - P, divisor_cnt[i] - 1);
        res += p;
    }
    cout << fixed << setprecision(10) << res << endl;
}
0