結果

問題 No.144 エラトステネスのざる
ユーザー H3PO4H3PO4
提出日時 2020-05-06 11:08:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 228 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,932 KB
最終ジャッジ日時 2024-06-28 11:00:44
合計ジャッジ時間 12,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
49,680 KB
testcase_01 AC 519 ms
44,176 KB
testcase_02 AC 518 ms
44,300 KB
testcase_03 AC 523 ms
44,176 KB
testcase_04 AC 516 ms
44,040 KB
testcase_05 AC 521 ms
44,048 KB
testcase_06 AC 522 ms
43,924 KB
testcase_07 AC 528 ms
44,176 KB
testcase_08 AC 532 ms
44,168 KB
testcase_09 AC 524 ms
44,304 KB
testcase_10 AC 524 ms
44,048 KB
testcase_11 AC 526 ms
43,788 KB
testcase_12 AC 524 ms
44,044 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, P = input().split()
N = int(N)
P = float(P)

factor = np.zeros(N + 1, dtype=int)
for i in range(2, N + 1):
    factor[i * 2:N + 1:i] += 1

ans = .0
for x in factor[2:]:
    ans += pow(1 - P, x)
print(ans)
0