結果

問題 No.2972 確率的素数判定
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-29 21:42:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-11-29 21:42:43
合計ジャッジ時間 5,709 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,104 KB
testcase_01 AC 56 ms
63,104 KB
testcase_02 AC 56 ms
63,232 KB
testcase_03 AC 55 ms
63,592 KB
testcase_04 AC 57 ms
63,616 KB
testcase_05 AC 58 ms
63,360 KB
testcase_06 AC 55 ms
63,232 KB
testcase_07 AC 56 ms
62,976 KB
testcase_08 AC 56 ms
62,848 KB
testcase_09 AC 57 ms
62,720 KB
testcase_10 AC 57 ms
62,976 KB
testcase_11 AC 56 ms
63,488 KB
testcase_12 AC 57 ms
63,232 KB
testcase_13 AC 59 ms
63,488 KB
testcase_14 AC 81 ms
71,936 KB
testcase_15 AC 141 ms
78,532 KB
testcase_16 AC 412 ms
78,848 KB
testcase_17 AC 433 ms
78,648 KB
testcase_18 AC 448 ms
78,848 KB
testcase_19 AC 424 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L=200000
cp=[1]*(L+1)
cp[0]=0
cp[1]=0
for i in range(2,L+1):
  if cp[i]:
    for j in range(i+i,L+1,i):
      cp[j]=0
for i in range(1,L+1):
  cp[i]+=cp[i-1]
T=int(input())
for _ in range(T):
  n,p,q=map(int,input().split())
  a=cp[n]
  b=n-a
  p/=100
  q/=100
  p1=(a/n)*p
  p2=(b/n)*(1-q)
  print(p1/(p1+p2))
0