結果

問題 No.2972 確率的素数判定
ユーザー SSRSSSRS
提出日時 2024-11-29 21:40:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 204,296 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-29 21:40:53
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 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 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 5 ms
5,248 KB
testcase_15 AC 26 ms
5,248 KB
testcase_16 AC 244 ms
5,248 KB
testcase_17 AC 238 ms
5,248 KB
testcase_18 AC 247 ms
5,248 KB
testcase_19 AC 268 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int N_MAX = 100000;
int main(){
  cout << fixed << setprecision(20);
  int T;
  cin >> T;
  vector<bool> prime(N_MAX + 1, true);
  vector<int> p;
  for (int i = 2; i <= N_MAX; i++){
    if (prime[i]){
      p.push_back(i);
      for (int j = i * 2; j <= N_MAX; j += i){
        prime[j] = false;
      }
    }
  }
  for (int i = 0; i < T; i++){
    int N, P, Q;
    cin >> N >> P >> Q;
    int cnt_prime = upper_bound(p.begin(), p.end(), N) - p.begin();
    int cnt_comp = N - cnt_prime;
    double p = P * 0.01, q = Q * 0.01;
    cout << (p * cnt_prime) / (p * cnt_prime + (1 - q) * cnt_comp) << endl;
  }
}
0