結果

問題 No.144 エラトステネスのざる
ユーザー KyutatsuKyutatsu
提出日時 2024-12-30 23:20:43
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 5,073 ms
コンパイル使用メモリ 276,832 KB
実行使用メモリ 7,428 KB
最終ジャッジ日時 2024-12-30 23:20:52
合計ジャッジ時間 6,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 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,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 45 ms
7,296 KB
testcase_14 AC 44 ms
7,408 KB
testcase_15 AC 45 ms
7,368 KB
testcase_16 AC 45 ms
7,376 KB
testcase_17 AC 45 ms
7,428 KB
testcase_18 AC 51 ms
7,212 KB
testcase_19 AC 45 ms
7,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iomanip>

using namespace std;

int main() {
    int N; cin >> N;
    double P; cin >> P;

    double ans = 0;
    vector<int> div(N+1);
    for (int i=2;i<=N;i++) {
        for (int j=i;j<=N;j+=i) div[j]++;
        double E = 1.0;
        for (int e=0;e<div[i]-1;e++) E *= (1.0 - P);
        ans += E;
    }
    cout << fixed << setprecision(16) << ans << endl;
}

0