結果

問題 No.144 エラトステネスのざる
ユーザー pluto77pluto77
提出日時 2016-03-08 09:24:19
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 86,368 KB
最終ジャッジ日時 2024-09-24 13:40:26
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
84,192 KB
testcase_01 AC 78 ms
84,064 KB
testcase_02 AC 77 ms
84,668 KB
testcase_03 AC 76 ms
84,696 KB
testcase_04 AC 76 ms
84,676 KB
testcase_05 AC 75 ms
84,104 KB
testcase_06 AC 85 ms
85,188 KB
testcase_07 AC 76 ms
85,088 KB
testcase_08 AC 77 ms
85,080 KB
testcase_09 AC 76 ms
84,964 KB
testcase_10 AC 75 ms
85,404 KB
testcase_11 AC 77 ms
85,508 KB
testcase_12 AC 78 ms
84,972 KB
testcase_13 AC 143 ms
86,000 KB
testcase_14 AC 149 ms
86,344 KB
testcase_15 AC 147 ms
85,984 KB
testcase_16 AC 150 ms
86,012 KB
testcase_17 AC 148 ms
86,120 KB
testcase_18 AC 161 ms
86,368 KB
testcase_19 AC 146 ms
86,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_144

s=raw_input().split()
N=int(s[0])
p=float(s[1])
t=[1.0 for i in xrange(10**6+1)]
res=0
for i in xrange(2,N+1):
 for j in xrange(i*2,N+1,i):
  t[j]*=(1.0-p)
 res+=t[i]

print "%.7f" % res
0