結果

問題 No.144 エラトステネスのざる
ユーザー kkslucy1kkslucy1
提出日時 2018-03-13 17:16:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 924 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 163,164 KB
実行使用メモリ 11,604 KB
最終ジャッジ日時 2024-11-22 09:29:10
合計ジャッジ時間 8,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,428 KB
testcase_01 AC 6 ms
11,500 KB
testcase_02 AC 6 ms
11,392 KB
testcase_03 AC 6 ms
11,364 KB
testcase_04 AC 5 ms
11,344 KB
testcase_05 AC 6 ms
11,108 KB
testcase_06 AC 5 ms
11,284 KB
testcase_07 AC 7 ms
11,236 KB
testcase_08 AC 55 ms
11,508 KB
testcase_09 AC 6 ms
11,520 KB
testcase_10 AC 6 ms
11,224 KB
testcase_11 AC 6 ms
11,604 KB
testcase_12 AC 6 ms
11,248 KB
testcase_13 AC 876 ms
11,112 KB
testcase_14 AC 876 ms
11,148 KB
testcase_15 AC 924 ms
11,520 KB
testcase_16 AC 874 ms
11,328 KB
testcase_17 AC 876 ms
11,488 KB
testcase_18 AC 877 ms
11,264 KB
testcase_19 AC 876 ms
11,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

double dp[1000001];

int main() {
	int n;
	cin >> n;
	double p;
	cin >> p;

	dp[0] = 1;
	for (int i = 1;i <= 1000000;i++) {
		dp[i] = (1 - p)*dp[i - 1];
	}
	
	double ans = 0;
	for (int i = 2;i <= n;i++) {
		int num = 1;
		int x = i;
		multiset<int> set;
		for (int j = 2;j*j <= x;j++) {
			while (x%j == 0&&j*j<=x) {
				x /= j;
				set.insert(j);
			}
		}
		set.insert(x);
		while (!set.empty()) {
			num *= set.erase(*set.begin()) + 1;
		}
		ans += dp[num - 2];
	}

	cout << setprecision(9)<<ans << endl;
	return 0;
}
0