結果

問題 No.2972 確率的素数判定
ユーザー titiatitia
提出日時 2024-11-29 23:16:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 906 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-11-29 23:16:59
合計ジャッジ時間 7,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
14,720 KB
testcase_01 AC 73 ms
14,848 KB
testcase_02 AC 64 ms
14,848 KB
testcase_03 AC 66 ms
14,976 KB
testcase_04 AC 63 ms
14,720 KB
testcase_05 AC 61 ms
14,720 KB
testcase_06 AC 65 ms
14,848 KB
testcase_07 AC 61 ms
14,848 KB
testcase_08 AC 62 ms
14,848 KB
testcase_09 AC 61 ms
14,848 KB
testcase_10 AC 62 ms
14,720 KB
testcase_11 AC 62 ms
14,848 KB
testcase_12 AC 62 ms
14,848 KB
testcase_13 AC 75 ms
14,848 KB
testcase_14 AC 69 ms
14,848 KB
testcase_15 AC 143 ms
14,848 KB
testcase_16 AC 874 ms
14,848 KB
testcase_17 AC 906 ms
14,848 KB
testcase_18 AC 893 ms
14,976 KB
testcase_19 AC 882 ms
14,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect


x=100010
# x以下の素数の列挙,素因数分解,約数の列挙
    
import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]


T=int(input())
for tests in range(T):
    N,P,Q=map(int,input().split())
    P=P/100
    Q=Q/100

    ko=bisect(Primes,N)

    ANS=P*(ko/N)/(P*(ko/N)+(1-Q)*(1-(ko/N)))

    print(ANS)
0