結果

問題 No.144 エラトステネスのざる
ユーザー cielciel
提出日時 2015-02-08 18:06:00
言語 PyPy2
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 189 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 77,100 KB
実行使用メモリ 239,224 KB
最終ジャッジ日時 2024-06-23 11:06:32
合計ジャッジ時間 12,418 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
77,972 KB
testcase_01 AC 89 ms
77,856 KB
testcase_02 AC 88 ms
77,752 KB
testcase_03 AC 86 ms
77,868 KB
testcase_04 AC 86 ms
77,492 KB
testcase_05 AC 86 ms
77,756 KB
testcase_06 AC 91 ms
79,236 KB
testcase_07 AC 91 ms
79,348 KB
testcase_08 AC 92 ms
79,384 KB
testcase_09 AC 90 ms
79,248 KB
testcase_10 AC 90 ms
79,252 KB
testcase_11 AC 90 ms
79,476 KB
testcase_12 AC 91 ms
79,420 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as D
N,P=[float(e)for e in raw_input().split()]
h=D(lambda:1)
r=0
for i in range(2,int(N)+1):
	r+=h[i]
	for j in range(i*2,int(N)+1,i):h[j]*=1-P
print(r)
0