結果

問題 No.144 エラトステネスのざる
ユーザー nohtaraynohtaray
提出日時 2019-11-18 14:17:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,814 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,864 KB
最終ジャッジ日時 2024-10-01 14:42:08
合計ジャッジ時間 19,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
43,428 KB
testcase_01 AC 442 ms
43,304 KB
testcase_02 AC 438 ms
43,540 KB
testcase_03 AC 440 ms
43,664 KB
testcase_04 AC 440 ms
43,556 KB
testcase_05 AC 438 ms
43,432 KB
testcase_06 AC 437 ms
43,532 KB
testcase_07 AC 440 ms
43,300 KB
testcase_08 AC 442 ms
43,660 KB
testcase_09 AC 440 ms
43,560 KB
testcase_10 AC 441 ms
43,408 KB
testcase_11 AC 445 ms
43,668 KB
testcase_12 AC 438 ms
43,304 KB
testcase_13 AC 1,513 ms
49,148 KB
testcase_14 AC 1,649 ms
49,864 KB
testcase_15 AC 1,635 ms
49,780 KB
testcase_16 AC 1,776 ms
49,028 KB
testcase_17 AC 1,618 ms
49,088 KB
testcase_18 AC 1,622 ms
49,864 KB
testcase_19 AC 1,814 ms
49,700 KB
権限があれば一括ダウンロードができます

ソースコード

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 in range(2, N // 2 + 1):
    exp[n + n::n] *= 1 - P
print(exp.sum())
0