結果

問題 No.2972 確率的素数判定
ユーザー 👑 p-adicp-adic
提出日時 2023-08-18 13:48:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 959 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-11-27 19:14:19
合計ジャッジ時間 9,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
14,080 KB
testcase_01 AC 173 ms
14,080 KB
testcase_02 AC 176 ms
14,080 KB
testcase_03 AC 162 ms
14,080 KB
testcase_04 AC 149 ms
13,952 KB
testcase_05 AC 155 ms
14,080 KB
testcase_06 AC 146 ms
13,952 KB
testcase_07 AC 148 ms
14,208 KB
testcase_08 AC 148 ms
14,080 KB
testcase_09 AC 150 ms
13,952 KB
testcase_10 AC 160 ms
14,080 KB
testcase_11 AC 148 ms
13,952 KB
testcase_12 AC 148 ms
13,952 KB
testcase_13 AC 151 ms
13,952 KB
testcase_14 AC 160 ms
13,952 KB
testcase_15 AC 263 ms
13,952 KB
testcase_16 AC 959 ms
14,080 KB
testcase_17 AC 959 ms
13,952 KB
testcase_18 AC 956 ms
13,952 KB
testcase_19 AC 953 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
L=11**5
P=[]
C=[0]*L
p=[0]*L
c=0
for i in R(2,L):
	if C[i]<1:
		P+=[i]
		c,j=c+1,i*2
		while j<L:C[j],j=1,j+i
	p[i]=c
for t in R(int(I())):
	N,A,B=map(int,I().split())
	print(A*p[N]/(A*p[N]+(100-B)*(N-p[N])))
0