結果
問題 | No.2972 確率的素数判定 |
ユーザー | umezo |
提出日時 | 2024-11-29 23:03:05 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 694 bytes |
コンパイル時間 | 2,986 ms |
コンパイル使用メモリ | 245,888 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-29 23:03:15 |
合計ジャッジ時間 | 5,286 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 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 | 7 ms
5,248 KB |
testcase_16 | AC | 54 ms
5,248 KB |
testcase_17 | AC | 53 ms
5,248 KB |
testcase_18 | AC | 57 ms
5,248 KB |
testcase_19 | AC | 55 ms
5,248 KB |
ソースコード
#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,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; }