結果

問題 No.144 エラトステネスのざる
ユーザー H3PO4H3PO4
提出日時 2020-05-06 11:10:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 238 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,968 KB
最終ジャッジ日時 2024-06-28 11:06:20
合計ジャッジ時間 14,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
44,436 KB
testcase_01 AC 503 ms
43,800 KB
testcase_02 AC 510 ms
43,924 KB
testcase_03 AC 500 ms
44,216 KB
testcase_04 AC 505 ms
43,832 KB
testcase_05 AC 499 ms
44,184 KB
testcase_06 AC 520 ms
44,060 KB
testcase_07 AC 510 ms
44,056 KB
testcase_08 AC 508 ms
43,808 KB
testcase_09 AC 509 ms
44,436 KB
testcase_10 AC 511 ms
43,792 KB
testcase_11 AC 509 ms
44,560 KB
testcase_12 AC 514 ms
43,928 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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_lst = np.full(N - 1, 1 - P)
ans_lst **= factor[2:]
print(ans_lst.sum())
0