結果

問題 No.144 エラトステネスのざる
ユーザー cureskolcureskol
提出日時 2020-04-07 19:07:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 1,499 ms
コンパイル使用メモリ 168,324 KB
実行使用メモリ 8,816 KB
最終ジャッジ日時 2024-07-07 21:42:19
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
8,632 KB
testcase_01 AC 35 ms
8,576 KB
testcase_02 AC 34 ms
8,576 KB
testcase_03 AC 35 ms
8,576 KB
testcase_04 AC 35 ms
8,564 KB
testcase_05 AC 35 ms
8,704 KB
testcase_06 AC 35 ms
8,688 KB
testcase_07 AC 36 ms
8,576 KB
testcase_08 AC 35 ms
8,632 KB
testcase_09 AC 34 ms
8,520 KB
testcase_10 AC 34 ms
8,704 KB
testcase_11 AC 34 ms
8,520 KB
testcase_12 AC 34 ms
8,448 KB
testcase_13 AC 266 ms
8,576 KB
testcase_14 AC 273 ms
8,576 KB
testcase_15 AC 248 ms
8,576 KB
testcase_16 AC 260 ms
8,816 KB
testcase_17 AC 253 ms
8,576 KB
testcase_18 AC 267 ms
8,576 KB
testcase_19 AC 58 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int yaku[1234567];
using ld=long double;

signed main(){
  for(int i=2;i<1234567;i++)
    for(int j=i;j<1234567;j+=i)
      yaku[j]++;
  int n;ld p;cin>>n>>p;
  ld ans=0;
  for(int i=2;i<=n;i++)ans+=pow(1-p,yaku[i]-1);
  cout<<fixed<<setprecision(12)<<ans<<endl;
}
0