結果

問題 No.2972 確率的素数判定
ユーザー maguroflymagurofly
提出日時 2024-11-29 22:26:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-11-29 22:26:53
合計ジャッジ時間 9,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
12,800 KB
testcase_01 AC 126 ms
12,544 KB
testcase_02 AC 133 ms
12,928 KB
testcase_03 AC 124 ms
12,544 KB
testcase_04 AC 124 ms
12,672 KB
testcase_05 AC 125 ms
12,672 KB
testcase_06 AC 124 ms
12,800 KB
testcase_07 AC 124 ms
12,672 KB
testcase_08 AC 122 ms
12,544 KB
testcase_09 AC 123 ms
12,544 KB
testcase_10 AC 127 ms
12,544 KB
testcase_11 AC 127 ms
12,928 KB
testcase_12 AC 126 ms
12,800 KB
testcase_13 AC 123 ms
12,928 KB
testcase_14 AC 129 ms
12,800 KB
testcase_15 AC 176 ms
12,800 KB
testcase_16 AC 708 ms
12,416 KB
testcase_17 AC 695 ms
12,928 KB
testcase_18 AC 689 ms
12,672 KB
testcase_19 AC 668 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"

@primes = Prime.each(10**5).to_a
def prime_prob(n)
    count = @primes.bsearch_index { _1 > n }
    count / n.to_f
end

T = gets.to_i
T.times do
    n, p, q = gets.split.map(&:to_i)
    p *= 0.01
    q *= 0.01

    pT = prime_prob(n)
    pY = p * pT + (1 - q) * (1 - pT)

    puts pT * p / pY
end
0