結果

問題 No.144 エラトステネスのざる
ユーザー cielciel
提出日時 2015-02-08 18:08:38
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 77,092 KB
実行使用メモリ 93,800 KB
最終ジャッジ日時 2024-06-23 11:21:27
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
75,772 KB
testcase_01 AC 79 ms
75,400 KB
testcase_02 AC 76 ms
75,404 KB
testcase_03 AC 75 ms
75,416 KB
testcase_04 AC 78 ms
75,400 KB
testcase_05 AC 75 ms
75,804 KB
testcase_06 AC 79 ms
77,456 KB
testcase_07 AC 78 ms
76,948 KB
testcase_08 AC 80 ms
77,240 KB
testcase_09 AC 79 ms
77,324 KB
testcase_10 AC 80 ms
77,416 KB
testcase_11 AC 80 ms
77,308 KB
testcase_12 AC 79 ms
77,344 KB
testcase_13 AC 202 ms
93,260 KB
testcase_14 AC 223 ms
93,132 KB
testcase_15 AC 215 ms
93,800 KB
testcase_16 AC 218 ms
93,420 KB
testcase_17 AC 211 ms
93,148 KB
testcase_18 AC 217 ms
92,884 KB
testcase_19 AC 222 ms
93,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P=[float(e)for e in raw_input().split()]
h=[1]*int(N+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