結果

問題 No.2972 確率的素数判定
ユーザー umezoumezo
提出日時 2024-11-29 23:08:02
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 2,693 ms
コンパイル使用メモリ 244,888 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 23:08:08
合計ジャッジ時間 4,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
template <class T> using V=vector<T>;
template <class T> using VV=V<V<T>>;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  V<int> prime(100001,1);
  prime[0]=0,prime[1]=0;
  for(int i=2;i<=100000;i++){
    if(prime[i]){
      for(int j=i*2;j<=100000;j+=i) prime[j]=0;
    }
  }
  V<int> cnt(100001);
  for(int i=1;i<=100000;i++) cnt[i]=cnt[i-1]+prime[i];
  
  int t;
  cin>>t;
  while(t--){
    int n;
    double p,q;
    cin>>n>>p>>q;
    double ans=(double)cnt[n]*p/(cnt[n]*p+(n-cnt[n])*(100-q));
    printf("%.10f\n",ans);
  }
    
  return 0;
}
0