結果

問題 No.144 エラトステネスのざる
ユーザー takakintakakin
提出日時 2020-05-06 22:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 83,984 KB
最終ジャッジ日時 2024-07-03 09:11:02
合計ジャッジ時間 2,409 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,924 KB
testcase_01 AC 35 ms
52,980 KB
testcase_02 AC 37 ms
52,260 KB
testcase_03 AC 37 ms
52,596 KB
testcase_04 AC 33 ms
52,588 KB
testcase_05 AC 34 ms
51,760 KB
testcase_06 AC 42 ms
59,900 KB
testcase_07 AC 40 ms
60,952 KB
testcase_08 AC 40 ms
60,468 KB
testcase_09 AC 39 ms
60,160 KB
testcase_10 AC 38 ms
59,768 KB
testcase_11 AC 40 ms
59,892 KB
testcase_12 AC 39 ms
61,008 KB
testcase_13 AC 137 ms
83,716 KB
testcase_14 AC 169 ms
83,888 KB
testcase_15 AC 155 ms
83,948 KB
testcase_16 AC 163 ms
83,984 KB
testcase_17 AC 171 ms
83,832 KB
testcase_18 AC 181 ms
83,832 KB
testcase_19 AC 156 ms
83,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,p=map(float,input().split())
n=int(n)
D=[0]*(n+1)
for i in range(2,n+1):
  for j in range(1,n//i+1):
    D[i*j]+=1
ans=0
for i in range(2,n+1):
  ans+=pow(1-p,max(0,D[i]-1))
print(ans)
0