結果
問題 | No.144 エラトステネスのざる |
ユーザー | bachoppi |
提出日時 | 2020-09-17 23:16:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 249 ms / 2,000 ms |
コード長 | 950 bytes |
コンパイル時間 | 1,067 ms |
コンパイル使用メモリ | 119,860 KB |
実行使用メモリ | 23,268 KB |
最終ジャッジ日時 | 2024-06-22 07:16:35 |
合計ジャッジ時間 | 2,415 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
7,632 KB |
testcase_01 | AC | 28 ms
7,568 KB |
testcase_02 | AC | 29 ms
7,808 KB |
testcase_03 | AC | 29 ms
7,532 KB |
testcase_04 | AC | 29 ms
7,552 KB |
testcase_05 | AC | 28 ms
7,516 KB |
testcase_06 | AC | 28 ms
7,664 KB |
testcase_07 | AC | 28 ms
7,588 KB |
testcase_08 | AC | 29 ms
7,508 KB |
testcase_09 | AC | 29 ms
7,688 KB |
testcase_10 | AC | 28 ms
7,660 KB |
testcase_11 | AC | 29 ms
7,752 KB |
testcase_12 | AC | 28 ms
7,564 KB |
testcase_13 | AC | 34 ms
23,228 KB |
testcase_14 | AC | 35 ms
23,200 KB |
testcase_15 | AC | 249 ms
23,260 KB |
testcase_16 | AC | 35 ms
23,116 KB |
testcase_17 | AC | 34 ms
23,124 KB |
testcase_18 | AC | 33 ms
23,140 KB |
testcase_19 | AC | 36 ms
23,268 KB |
ソースコード
#include<iostream> #include<string> #include<cstring> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; #define PI 3.141592653589793 int main(){ int n; long double p; cin >> n >> p; int cnt[1010100] = {}; for(int i=2; i<=1010000; i++){ for(int j=2*i; j<=1010000; j+=i){ cnt[j]++; } } long double ans = 0.0; long double pow[n]; pow[0] = 1.0; rep(i, n){ pow[i+1] = pow[i]*(1-p); } for(int i=2; i<=n; i++){ ans+=pow[cnt[i]]; //cout << ans << endl; } cout << fixed << setprecision(7) << ans << endl; }