結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,776 KB
testcase_01 AC 73 ms
75,904 KB
testcase_02 AC 79 ms
75,428 KB
testcase_03 AC 74 ms
75,904 KB
testcase_04 AC 74 ms
75,536 KB
testcase_05 AC 74 ms
75,796 KB
testcase_06 AC 79 ms
77,312 KB
testcase_07 AC 76 ms
76,952 KB
testcase_08 AC 78 ms
77,216 KB
testcase_09 AC 76 ms
77,076 KB
testcase_10 AC 79 ms
77,112 KB
testcase_11 AC 76 ms
77,576 KB
testcase_12 AC 77 ms
77,356 KB
testcase_13 AC 166 ms
101,632 KB
testcase_14 AC 175 ms
101,760 KB
testcase_15 AC 176 ms
101,632 KB
testcase_16 AC 173 ms
101,488 KB
testcase_17 AC 176 ms
101,376 KB
testcase_18 AC 176 ms
101,760 KB
testcase_19 AC 176 ms
101,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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