結果

問題 No.2972 確率的素数判定
ユーザー GOTKAKOGOTKAKO
提出日時 2024-11-29 21:41:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 201,720 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 21:41:41
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 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 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 4 ms
5,248 KB
testcase_15 AC 11 ms
5,248 KB
testcase_16 AC 81 ms
5,248 KB
testcase_17 AC 80 ms
5,248 KB
testcase_18 AC 83 ms
5,248 KB
testcase_19 AC 80 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int n = 100000;
    vector<int> prime(n+1,1);
    prime.at(0) = 0; prime.at(1) = 0;
    for(int i=2; i*i<=n; i++){
        if(prime.at(i) == 0) continue;
        for(int k=i*i; k<=n; k+=i) prime.at(k) = 0;
    }
    for(int i=1; i<=n; i++) prime.at(i) += prime.at(i-1);
    int T; cin >> T;
    while(T--){
        int N,P,Q; cin >> N >> P >> Q;
        int p = prime.at(N),q = N-p;
        int Yp = p*P,Yq = q*(100-Q);
        cout << fixed << setprecision(20) << (Yp+0.0)/(Yp+Yq) << "\n";
    }
}
0