結果

問題 No.144 エラトステネスのざる
ユーザー cielciel
提出日時 2015-02-08 18:06:19
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 185 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 236,252 KB
最終ジャッジ日時 2024-06-23 11:20:49
合計ジャッジ時間 16,142 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,856 KB
testcase_01 AC 40 ms
54,156 KB
testcase_02 AC 39 ms
53,656 KB
testcase_03 AC 43 ms
53,992 KB
testcase_04 AC 39 ms
54,316 KB
testcase_05 AC 39 ms
54,476 KB
testcase_06 AC 46 ms
62,452 KB
testcase_07 AC 47 ms
62,328 KB
testcase_08 AC 46 ms
62,484 KB
testcase_09 AC 47 ms
63,040 KB
testcase_10 AC 48 ms
63,016 KB
testcase_11 AC 48 ms
63,192 KB
testcase_12 AC 47 ms
62,436 KB
testcase_13 TLE -
testcase_14 AC 1,974 ms
235,696 KB
testcase_15 TLE -
testcase_16 AC 1,980 ms
235,916 KB
testcase_17 AC 1,969 ms
235,844 KB
testcase_18 TLE -
testcase_19 AC 1,971 ms
235,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as D
N,P=[float(e)for e in 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