結果

問題 No.144 エラトステネスのざる
ユーザー get_tanniget_tanni
提出日時 2024-03-14 13:10:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 1,143 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 203,388 KB
実行使用メモリ 11,540 KB
最終ジャッジ日時 2024-09-29 23:41:45
合計ジャッジ時間 4,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 3 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 318 ms
11,260 KB
testcase_14 AC 317 ms
11,540 KB
testcase_15 AC 293 ms
11,424 KB
testcase_16 AC 299 ms
11,328 KB
testcase_17 AC 293 ms
11,304 KB
testcase_18 AC 306 ms
11,468 KB
testcase_19 AC 71 ms
11,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll=long long;
using ld=long double;
using P=array<ll,2>;
#define rep(i,n) for (ll i=0;i<(n);i++)
#define rep2(i,a,b) for (ll i=(a);i<(b);i++)
#define repd(i,a,b) for (ll i=(a);i>=(b);i--)
#define popcount __builtin_popcountll
#define cin(a) ll a; cin >> a;
#define cin2(a,b) ll a,b; cin >> a >> b;
#define cin3(a,b,c) ll a,b,c; cin >> a >> b >> c;
#define cinvec(v) vector<ll> v(N); rep(i,N) cin >> v[i];
#define cinvec2(v,n) vector<ll> v(n); rep(i,n) cin >> v[i];
#define cins(s) string s; cin >> s;
#define cinc(c) char c; cin >> c;
vector<ll> dx = {0,-1,0,1},dy = {1,0,-1,0}, ddx = {0,-1,-1,-1,0,1,1,1}, ddy = {1,1,0,-1,-1,-1,0,1};
void yesno(bool b) {cout << (b?"Yes":"No") << endl;}
template<class T> void sortunique(vector<T> &V) {sort(V.begin(), V.end()); V.erase(unique(V.begin(), V.end()), V.end());}

int main() {
    cin(N);
	ld p; cin >> p;

	vector<ll> nokori(N+1, 0);
	for(ll i=2; i<=N; i++){
		for(ll j=i; j<=N; j+=i) nokori[j]++;
	}

	ld ans = 0;
	rep2(i, 2, N+1){
		ans += pow(1-p, nokori[i]-1);
	}

	cout << fixed << setprecision(10) << ans << endl;
    
    return 0;
} 
0