結果

問題 No.2972 確率的素数判定
ユーザー rieaaddlreiuurieaaddlreiuu
提出日時 2024-12-02 23:19:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 977 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 170,136 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-02 23:19:43
合計ジャッジ時間 4,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

vector<int> countPrimeTable(int N) {
	vector<int> tables(N+1,0);
	tables[0] =0;
	tables[1] = 0;

    // N+1個の要素を持つベクトルを作成(初期値はtrue)
    vector<bool> isPrime(N + 1, true);
    isPrime[0] = isPrime[1] = false; // 0と1は素数ではない

    // エラトステネスの篩
    for (int i = 2; i * i <= N; ++i) {
        if (isPrime[i]) {
            for (int j = i * i; j <= N; j += i) {
                isPrime[j] = false;
            }
        }
    }

    // 素数の個数をカウント
    int primeCount = 0;
    for (int i = 2; i <= N; ++i) {
        if (isPrime[i]) {
            ++primeCount;
            tables[i] = primeCount;
        }
    }
    return tables;
}


int main(){
	vector<int> Pi(100000+1,0);
	Pi= countPrimeTable(100001);
	int T;
	int N,P,Q;
	cin >> T;
	for(int i=0;i<T;i++){
		cin >> N >> P >> Q;
		cout << (P*Pi[N])/(P*Pi[N]+(100-Q)*(N-Pi[N])) << endl;
	}
}


0