結果

問題 No.2972 確率的素数判定
ユーザー anonymouslyanonymously
提出日時 2024-11-29 22:45:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 880 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,400 KB
最終ジャッジ日時 2024-11-29 22:45:23
合計ジャッジ時間 7,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
15,140 KB
testcase_01 AC 69 ms
15,272 KB
testcase_02 AC 73 ms
15,144 KB
testcase_03 AC 66 ms
15,400 KB
testcase_04 AC 68 ms
15,144 KB
testcase_05 AC 66 ms
15,292 KB
testcase_06 AC 66 ms
15,272 KB
testcase_07 AC 66 ms
15,272 KB
testcase_08 AC 66 ms
15,268 KB
testcase_09 AC 68 ms
15,272 KB
testcase_10 AC 65 ms
15,272 KB
testcase_11 AC 66 ms
15,276 KB
testcase_12 AC 65 ms
15,144 KB
testcase_13 AC 66 ms
15,172 KB
testcase_14 AC 74 ms
15,272 KB
testcase_15 AC 148 ms
15,272 KB
testcase_16 AC 880 ms
15,268 KB
testcase_17 AC 872 ms
15,268 KB
testcase_18 AC 879 ms
15,272 KB
testcase_19 AC 872 ms
15,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 100000


def Eratosthenes():
    isPrime = [False] * 2 + [True] * (N-1)
    i = 2
    while i * i <= N:
        if isPrime[i]:
            for j in range(2*i, N+1, i):
                isPrime[j] = False
        i += 1
    return isPrime


isPrime = Eratosthenes()
S = [0]
for i in range(1, N+1):
    S.append(S[-1]+isPrime[i])
for t in range(int(input())):
    n, p, q = map(int, input().split())
    print(S[n]*p / (S[n]*p + (n-S[n])*(100-q)))
0