結果
問題 | No.144 エラトステネスのざる |
ユーザー | yamachaso55 |
提出日時 | 2021-05-20 19:24:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 2,249 ms |
コンパイル使用メモリ | 201,064 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-10-10 07:18:46 |
合計ジャッジ時間 | 3,325 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 46 ms
7,552 KB |
testcase_14 | AC | 54 ms
7,680 KB |
testcase_15 | WA | - |
testcase_16 | AC | 53 ms
7,680 KB |
testcase_17 | AC | 52 ms
7,552 KB |
testcase_18 | AC | 54 ms
7,680 KB |
testcase_19 | AC | 39 ms
7,424 KB |
ソースコード
// #define _GLIBCXX_DEBUG #include <bits/stdc++.h> // #include <atcoder/all> // g++ main.cpp -std=c++17 -I . using namespace std; // using namespace atcoder; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define all(v) v.begin(), v.end() template<class T,class U> inline bool chmin(T&x,U y){if(x>y){x=y;return true;}return false;} template<class T,class U> inline bool chmax(T&x,U y){if(x<y){x=y;return true;}return false;} using ll=long long; const int inf = INT_MAX / 2; const ll INF = 1LL << 60; const int MOD = 1000000007; //cout << fixed << setprecision(15) << x << endl; // using mint = modint1000000007; //////////////////////////////////////////////////////////////////////////////////////////// int main() { int n; double p; cin>>n>>p; vector<int> v(n+1); double ans = 0; for(int i = 2; i <= n; i++) { for(int j = i; j <= n; j += i) { v[j]++; } ans += pow(1-p, v[i]-1); } cout << ans << endl; return 0; }