結果

問題 No.144 エラトステネスのざる
ユーザー tabataba
提出日時 2017-05-20 08:49:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 137,280 KB
実行使用メモリ 11,324 KB
最終ジャッジ日時 2024-09-19 00:14:12
合計ジャッジ時間 2,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 43 ms
11,264 KB
testcase_14 AC 44 ms
11,256 KB
testcase_15 WA -
testcase_16 AC 44 ms
11,264 KB
testcase_17 AC 43 ms
11,136 KB
testcase_18 AC 47 ms
11,136 KB
testcase_19 AC 44 ms
11,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <cmath>
#include <cassert>
#include <random>
#include <vector>
#include <algorithm>
#include <array>
#include <functional>
#include <utility>
#include <regex>
#include <tuple>
#include <map>
#include <set>
#include <iostream>

using namespace std;

int main(){
	int n;
	double p,s=0;
	-scanf("%d%lf",&n,&p);
	p=1-p;
	vector<double> t(n+1,1.0);
	for(int i=2;i<=n;i++){
		for(int j=i*2;j<=n;j+=i){
			t[j]*=p;
		}
		s+=t[i];
	}
	cout<<s<<endl;
	return 0;
}
0