結果

問題 No.144 エラトステネスのざる
ユーザー gigurururugigurururu
提出日時 2015-02-06 01:09:38
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 101,632 KB
最終ジャッジ日時 2024-06-23 09:50:40
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,516 KB
testcase_01 AC 72 ms
75,628 KB
testcase_02 AC 74 ms
75,392 KB
testcase_03 AC 73 ms
75,424 KB
testcase_04 AC 76 ms
75,520 KB
testcase_05 AC 74 ms
75,552 KB
testcase_06 AC 77 ms
77,056 KB
testcase_07 AC 77 ms
77,176 KB
testcase_08 AC 78 ms
77,292 KB
testcase_09 AC 76 ms
77,688 KB
testcase_10 AC 76 ms
77,312 KB
testcase_11 AC 77 ms
77,312 KB
testcase_12 AC 77 ms
77,372 KB
testcase_13 AC 164 ms
101,504 KB
testcase_14 AC 173 ms
101,632 KB
testcase_15 AC 172 ms
101,248 KB
testcase_16 AC 175 ms
101,340 KB
testcase_17 AC 167 ms
101,248 KB
testcase_18 AC 173 ms
101,376 KB
testcase_19 AC 167 ms
101,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p=list(raw_input().split())
N,P=int(n),float(p)
l=[0,0]+[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))
0