結果
| 問題 | No.144 エラトステネスのざる |
| コンテスト | |
| ユーザー |
oxyshower
|
| 提出日時 | 2020-01-09 15:22:41 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 413 bytes |
| 記録 | |
| コンパイル時間 | 1,735 ms |
| コンパイル使用メモリ | 168,560 KB |
| 実行使用メモリ | 11,324 KB |
| 最終ジャッジ日時 | 2024-11-23 03:53:41 |
| 合計ジャッジ時間 | 2,748 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 WA * 3 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL_DEBUG
#include "LOCAL_DEBUG.hpp"
#endif
#define int long long
signed main(){
double n, p; cin >> n >> p;
vector<double> dp(n + 1, 1);
for(int i = 2; i <= n; i++){
for(int j = i+i; j <= n; j+=i){
dp[j] *= (1.0 - p);
}
}
double ans = 0;
for(int i = 2; i <= n; i++){
ans += dp[i];
}
cout << ans << endl;
return 0;
}
oxyshower