結果

問題 No.2972 確率的素数判定
ユーザー 👑 p-adicp-adic
提出日時 2023-08-18 13:47:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-11-27 19:13:15
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,488 KB
testcase_01 AC 55 ms
63,744 KB
testcase_02 AC 56 ms
63,616 KB
testcase_03 AC 55 ms
63,744 KB
testcase_04 AC 56 ms
64,128 KB
testcase_05 AC 56 ms
64,384 KB
testcase_06 AC 55 ms
64,384 KB
testcase_07 AC 55 ms
64,000 KB
testcase_08 AC 55 ms
64,384 KB
testcase_09 AC 55 ms
64,384 KB
testcase_10 AC 55 ms
63,616 KB
testcase_11 AC 56 ms
64,128 KB
testcase_12 AC 56 ms
63,872 KB
testcase_13 AC 58 ms
64,256 KB
testcase_14 AC 86 ms
72,448 KB
testcase_15 AC 138 ms
79,232 KB
testcase_16 AC 438 ms
79,744 KB
testcase_17 AC 427 ms
79,744 KB
testcase_18 AC 427 ms
79,616 KB
testcase_19 AC 414 ms
79,872 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