結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 45 ms
58,880 KB
testcase_07 AC 46 ms
58,752 KB
testcase_08 AC 45 ms
58,880 KB
testcase_09 AC 44 ms
59,008 KB
testcase_10 AC 45 ms
58,752 KB
testcase_11 AC 45 ms
58,624 KB
testcase_12 AC 47 ms
59,128 KB
testcase_13 AC 156 ms
91,776 KB
testcase_14 AC 208 ms
91,792 KB
testcase_15 AC 201 ms
92,160 KB
testcase_16 AC 196 ms
91,816 KB
testcase_17 AC 186 ms
91,776 KB
testcase_18 AC 200 ms
91,904 KB
testcase_19 AC 177 ms
91,648 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