結果

問題 No.144 エラトステネスのざる
ユーザー yuki2006yuki2006
提出日時 2015-02-05 19:31:19
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 1,600 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 86,144 KB
最終ジャッジ日時 2024-06-23 08:33:02
合計ジャッジ時間 4,657 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
75,520 KB
testcase_01 AC 82 ms
75,520 KB
testcase_02 AC 82 ms
75,648 KB
testcase_03 AC 84 ms
75,392 KB
testcase_04 AC 83 ms
75,776 KB
testcase_05 AC 82 ms
75,264 KB
testcase_06 AC 93 ms
77,184 KB
testcase_07 AC 87 ms
77,056 KB
testcase_08 AC 85 ms
76,928 KB
testcase_09 AC 88 ms
76,800 KB
testcase_10 AC 90 ms
77,184 KB
testcase_11 AC 90 ms
77,056 KB
testcase_12 AC 86 ms
76,928 KB
testcase_13 AC 172 ms
85,760 KB
testcase_14 AC 173 ms
85,632 KB
testcase_15 AC 189 ms
86,016 KB
testcase_16 AC 192 ms
86,144 KB
testcase_17 AC 196 ms
86,016 KB
testcase_18 AC 183 ms
85,888 KB
testcase_19 AC 178 ms
85,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = map(float, raw_input().split())
N = int(N)

prime = [1.0] * (N + 1)

for v in xrange(2, N + 1):
    for i in xrange(v + v, N + 1, v):
        prime[i] *= 1 - p

total = 0
for prob in xrange(2, N + 1):
    total += prime[prob]
print total
0