結果

問題 No.144 エラトステネスのざる
ユーザー gigurururugigurururu
提出日時 2015-02-06 01:04:33
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 1,483 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 102,084 KB
最終ジャッジ日時 2024-06-23 09:48:57
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,328 KB
testcase_01 AC 73 ms
75,460 KB
testcase_02 AC 73 ms
75,264 KB
testcase_03 AC 70 ms
75,904 KB
testcase_04 AC 70 ms
75,552 KB
testcase_05 AC 72 ms
75,580 KB
testcase_06 AC 92 ms
77,036 KB
testcase_07 AC 76 ms
77,072 KB
testcase_08 AC 74 ms
76,836 KB
testcase_09 AC 76 ms
76,956 KB
testcase_10 AC 75 ms
76,836 KB
testcase_11 AC 75 ms
76,824 KB
testcase_12 AC 73 ms
76,840 KB
testcase_13 AC 171 ms
101,616 KB
testcase_14 AC 180 ms
101,204 KB
testcase_15 AC 178 ms
101,304 KB
testcase_16 AC 175 ms
102,084 KB
testcase_17 AC 178 ms
101,436 KB
testcase_18 AC 180 ms
101,664 KB
testcase_19 AC 180 ms
101,204 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 range(2,N+1):
    s+=l[i]
    for j in range(i+i,N+1,i):
        l[j]*=q
print(s)
0