結果
問題 | No.144 エラトステネスのざる |
ユーザー | nvt4s |
提出日時 | 2019-05-26 18:55:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 875 bytes |
コンパイル時間 | 1,640 ms |
コンパイル使用メモリ | 169,300 KB |
実行使用メモリ | 7,648 KB |
最終ジャッジ日時 | 2024-09-17 15:20:21 |
合計ジャッジ時間 | 3,078 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
7,424 KB |
testcase_01 | AC | 30 ms
7,468 KB |
testcase_02 | AC | 31 ms
7,644 KB |
testcase_03 | AC | 31 ms
7,404 KB |
testcase_04 | AC | 31 ms
7,424 KB |
testcase_05 | AC | 31 ms
7,452 KB |
testcase_06 | AC | 31 ms
7,480 KB |
testcase_07 | AC | 31 ms
7,468 KB |
testcase_08 | AC | 30 ms
7,552 KB |
testcase_09 | AC | 30 ms
7,588 KB |
testcase_10 | AC | 31 ms
7,552 KB |
testcase_11 | AC | 30 ms
7,612 KB |
testcase_12 | AC | 31 ms
7,552 KB |
testcase_13 | AC | 47 ms
7,648 KB |
testcase_14 | AC | 54 ms
7,536 KB |
testcase_15 | AC | 55 ms
7,464 KB |
testcase_16 | AC | 54 ms
7,476 KB |
testcase_17 | AC | 55 ms
7,608 KB |
testcase_18 | AC | 56 ms
7,552 KB |
testcase_19 | AC | 41 ms
7,472 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> Pint; typedef pair<ll, ll> P; //typedef pair<int, pair<int, int>> P; //typedef tuple<int,int,int> T; ll INFL = 1000000000000000010;//10^18 = 2^60 int INF = 2147483600;//10^9 ll MOD = 1000000007; vector<int> dy = {0,0,1,-1}; vector<int> dx = {1,-1,0,0}; //約数の個数の列挙 //nlogn vector<int> num_divisors_list(int n){ vector<int> num(n+1); for(int i = 1; i <= n; i++){ for(int j = i; j <= n; j += i){ num[j]++; } } return num; } int main(void){ int N; double p; cin >> N >> p; double ans = 0.0; vector<int> num = num_divisors_list(1000010); for(int i = 2; i <= N; i++){ int x = num[i]; x -= 2; ans += pow((1.0-p), x); } cout << fixed << setprecision(10) << ans << endl; }