結果
問題 |
No.144 エラトステネスのざる
|
ユーザー |
![]() |
提出日時 | 2019-03-18 03:48:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 427 bytes |
コンパイル時間 | 1,418 ms |
コンパイル使用メモリ | 167,296 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-07-08 10:16:18 |
合計ジャッジ時間 | 2,482 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include "bits/stdc++.h" using namespace std; void solve() { int n; double p; cin >> n >> p; vector<double> dp(n+1, 1); double ans = 0; for (int i = 2; i <= n; i++) { for (int j = 2*i; j <= n; j += i) { dp[j] *= 1 - p; } ans += dp[i]; //cout << i << ' ' << dp[i] << endl; } cout << fixed << setprecision(9) << ans << endl; } int main(void) { solve(); //cout << "yui(*-v・)yui" << endl; return 0; }