結果

問題 No.144 エラトステネスのざる
ユーザー nohtaraynohtaray
提出日時 2019-06-14 14:39:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 341 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 64,988 KB
最終ジャッジ日時 2024-11-07 18:42:33
合計ジャッジ時間 24,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 512 ms
44,576 KB
testcase_01 AC 513 ms
44,196 KB
testcase_02 AC 511 ms
43,932 KB
testcase_03 AC 509 ms
44,192 KB
testcase_04 AC 502 ms
44,444 KB
testcase_05 AC 505 ms
44,064 KB
testcase_06 AC 511 ms
44,464 KB
testcase_07 AC 510 ms
44,196 KB
testcase_08 AC 512 ms
43,976 KB
testcase_09 AC 518 ms
44,444 KB
testcase_10 AC 510 ms
44,440 KB
testcase_11 AC 516 ms
44,064 KB
testcase_12 AC 517 ms
43,940 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

import numpy as np

sys.setrecursionlimit(2147483647)
INF = float("inf")


IN = sys.stdin.readline().rstrip().split()
N = int(IN[0])
P = float(IN[1])
# 列挙される期待値=(1-p)^約数の数
sieve = np.zeros(N + 1)
for n in range(2, N // 2 + 1):
    sieve[np.arange(n * 2, N + 1, n)] += 1
print(pow(1 - P, sieve[2:]).sum())
0