結果

問題 No.144 エラトステネスのざる
ユーザー gigurururugigurururu
提出日時 2015-02-06 01:19:33
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 93,856 KB
最終ジャッジ日時 2024-06-23 09:56:04
合計ジャッジ時間 3,589 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
75,392 KB
testcase_01 AC 84 ms
75,392 KB
testcase_02 AC 83 ms
75,520 KB
testcase_03 AC 88 ms
75,392 KB
testcase_04 AC 82 ms
75,776 KB
testcase_05 AC 80 ms
75,392 KB
testcase_06 AC 85 ms
76,928 KB
testcase_07 AC 85 ms
76,928 KB
testcase_08 AC 91 ms
76,928 KB
testcase_09 AC 95 ms
77,312 KB
testcase_10 AC 85 ms
77,056 KB
testcase_11 AC 82 ms
76,800 KB
testcase_12 AC 82 ms
77,056 KB
testcase_13 AC 178 ms
93,440 KB
testcase_14 AC 171 ms
93,824 KB
testcase_15 AC 174 ms
93,568 KB
testcase_16 AC 176 ms
93,464 KB
testcase_17 AC 180 ms
93,568 KB
testcase_18 AC 182 ms
93,856 KB
testcase_19 AC 178 ms
93,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p=list(raw_input().split())
N,P=int(n),float(p)
l=[1.0]*(N+1)
q=1-P
for i in xrange(2,N+1):
    for j in xrange(i+i,N+1,i):l[j]*=q
print(sum(l[2:]))
0