結果
問題 | No.144 エラトステネスのざる |
ユーザー | nvt4s |
提出日時 | 2019-05-26 18:54:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 1,637 ms |
コンパイル使用メモリ | 169,840 KB |
実行使用メモリ | 7,680 KB |
最終ジャッジ日時 | 2024-09-17 15:20:13 |
合計ジャッジ時間 | 3,178 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
7,512 KB |
testcase_01 | AC | 29 ms
7,652 KB |
testcase_02 | AC | 30 ms
7,680 KB |
testcase_03 | AC | 30 ms
7,552 KB |
testcase_04 | AC | 30 ms
7,460 KB |
testcase_05 | AC | 30 ms
7,424 KB |
testcase_06 | AC | 30 ms
7,616 KB |
testcase_07 | AC | 30 ms
7,476 KB |
testcase_08 | WA | - |
testcase_09 | AC | 31 ms
7,552 KB |
testcase_10 | WA | - |
testcase_11 | AC | 30 ms
7,676 KB |
testcase_12 | AC | 30 ms
7,552 KB |
testcase_13 | AC | 46 ms
7,676 KB |
testcase_14 | AC | 54 ms
7,612 KB |
testcase_15 | WA | - |
testcase_16 | AC | 55 ms
7,424 KB |
testcase_17 | AC | 54 ms
7,424 KB |
testcase_18 | AC | 56 ms
7,552 KB |
testcase_19 | AC | 41 ms
7,424 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 << ans << endl; }