結果

問題 No.144 エラトステネスのざる
ユーザー gahougahou
提出日時 2016-11-15 16:48:20
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 230 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-05-04 13:53:52
合計ジャッジ時間 4,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,400 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 11 ms
6,016 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 12 ms
6,144 KB
testcase_06 AC 13 ms
6,144 KB
testcase_07 AC 13 ms
6,272 KB
testcase_08 AC 12 ms
6,272 KB
testcase_09 AC 12 ms
6,400 KB
testcase_10 AC 12 ms
6,400 KB
testcase_11 AC 12 ms
6,528 KB
testcase_12 AC 12 ms
6,400 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,p=raw_input().split()
N=int(N)
p=float(p)
l=[0]*(N+1)
i=1
while True:
  i+=1
  if N<i*2: break
  for k in xrange(2,N/i+1):
    l[i*k]+=1
ans=0.0
for i in xrange(2,N+1):
  if l[i]==0: ans+=1.0
  else: ans+=(1.0-p)**l[i]
print ans
0