結果

問題 No.2972 確率的素数判定
ユーザー ねしんねしん
提出日時 2024-11-29 21:59:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 83,476 KB
最終ジャッジ日時 2024-11-29 21:59:37
合計ジャッジ時間 5,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
70,252 KB
testcase_01 AC 56 ms
69,788 KB
testcase_02 AC 57 ms
69,860 KB
testcase_03 AC 56 ms
69,840 KB
testcase_04 AC 58 ms
69,704 KB
testcase_05 AC 59 ms
70,944 KB
testcase_06 AC 57 ms
70,720 KB
testcase_07 AC 56 ms
71,056 KB
testcase_08 AC 58 ms
69,700 KB
testcase_09 AC 57 ms
69,584 KB
testcase_10 AC 58 ms
70,564 KB
testcase_11 AC 58 ms
70,656 KB
testcase_12 AC 58 ms
71,504 KB
testcase_13 AC 58 ms
71,804 KB
testcase_14 AC 84 ms
79,408 KB
testcase_15 AC 132 ms
83,456 KB
testcase_16 AC 447 ms
83,476 KB
testcase_17 AC 424 ms
83,372 KB
testcase_18 AC 416 ms
83,016 KB
testcase_19 AC 434 ms
83,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Prime=[1]*(10**5+1)
Prime[0]=0
Prime[1]=0
for i in range(2,10**5+1):
  if Prime[i]==1:
    for j in range(2*i,10**5+1,i):
      Prime[j]=0
rui=[0]
for i in range(1,10**5+1):
  rui.append(rui[-1]+Prime[i])
  
T=int(input())
for _ in range(T):
  N,P,Q=list(map(int,input().split()))
  M=rui[N]
  ans=M*P+(N-M)*(100-Q)
  print((M*P)/ans)
0