結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 11 ms
5,248 KB
testcase_16 AC 78 ms
5,248 KB
testcase_17 AC 82 ms
5,248 KB
testcase_18 AC 79 ms
5,248 KB
testcase_19 AC 79 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(101,1);
  prime[0]=0,prime[1]=0;
  for(int i=2;i<=100;i++){
    if(prime[i]){
      for(int j=i*2;j<=100;j+=i) prime[j]=0;
    }
  }
  V<int> cnt(101);
  for(int i=1;i<=100;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