結果

問題 No.144 エラトステネスのざる
ユーザー nbisconbisco
提出日時 2017-01-28 20:48:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-06-06 07:57:33
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 33 ms
51,712 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 39 ms
58,624 KB
testcase_07 AC 37 ms
58,496 KB
testcase_08 AC 39 ms
59,008 KB
testcase_09 AC 43 ms
59,004 KB
testcase_10 AC 40 ms
59,392 KB
testcase_11 AC 39 ms
59,136 KB
testcase_12 AC 39 ms
59,008 KB
testcase_13 AC 138 ms
91,308 KB
testcase_14 AC 176 ms
91,648 KB
testcase_15 AC 165 ms
91,760 KB
testcase_16 AC 180 ms
91,776 KB
testcase_17 AC 164 ms
91,648 KB
testcase_18 AC 185 ms
91,648 KB
testcase_19 AC 155 ms
91,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

tmp = input().split(" ")
N = int(tmp[0])
_p = float(tmp[1])
p = 1.0 - _p

count = [0] * (N+1)
for i in range(2, N//2+1):
    for j in range(2*i, N+1, i):
        count[j] += 1

ans = 0.0
for i in count[2:]:
    ans += p ** i
print(ans)
0