結果

問題 No.144 エラトステネスのざる
ユーザー nohtaraynohtaray
提出日時 2019-11-18 14:13:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 415 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 51,508 KB
最終ジャッジ日時 2024-10-01 14:38:07
合計ジャッジ時間 25,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 469 ms
43,944 KB
testcase_01 AC 447 ms
44,328 KB
testcase_02 AC 453 ms
44,192 KB
testcase_03 AC 435 ms
43,808 KB
testcase_04 AC 438 ms
43,688 KB
testcase_05 AC 437 ms
44,072 KB
testcase_06 AC 441 ms
44,316 KB
testcase_07 AC 439 ms
44,072 KB
testcase_08 AC 439 ms
43,940 KB
testcase_09 AC 439 ms
43,908 KB
testcase_10 AC 443 ms
43,812 KB
testcase_11 AC 447 ms
44,076 KB
testcase_12 AC 440 ms
44,072 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import sys

import numpy as np

if os.getenv("LOCAL"):
    sys.stdin = open("_in.txt", "r")

sys.setrecursionlimit(10 ** 9)
INF = float("inf")
IINF = 10 ** 18
MOD = 10 ** 9 + 7
# MOD = 998244353

N, P = list(map(float, sys.stdin.buffer.readline().split()))
N = int(N)

exp = np.ones(N + 1)
exp[0] = 0
exp[1] = 0

for n, e in enumerate(exp[2:], 2):
    exp[n + n::n] *= 1 - P
# print(exp)
print(exp.sum())
0