結果

問題 No.144 エラトステネスのざる
ユーザー poet_nayutapoet_nayuta
提出日時 2018-08-19 18:13:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 799 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 64,068 KB
最終ジャッジ日時 2024-11-17 20:06:47
合計ジャッジ時間 13,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 488 ms
44,060 KB
testcase_01 AC 487 ms
43,804 KB
testcase_02 AC 487 ms
44,184 KB
testcase_03 AC 491 ms
44,196 KB
testcase_04 AC 493 ms
44,188 KB
testcase_05 AC 498 ms
43,676 KB
testcase_06 AC 497 ms
43,940 KB
testcase_07 AC 497 ms
44,200 KB
testcase_08 AC 489 ms
44,060 KB
testcase_09 AC 496 ms
44,060 KB
testcase_10 AC 493 ms
43,800 KB
testcase_11 AC 482 ms
44,192 KB
testcase_12 AC 497 ms
43,796 KB
testcase_13 AC 799 ms
63,944 KB
testcase_14 AC 723 ms
63,884 KB
testcase_15 AC 718 ms
64,068 KB
testcase_16 AC 729 ms
63,592 KB
testcase_17 AC 729 ms
63,680 KB
testcase_18 AC 725 ms
63,764 KB
testcase_19 AC 715 ms
63,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def solve(N, p):
    ps = np.ones(N+1)
    c = int(np.sqrt(N))+1
    for i in range(2, c):
        ind = np.arange(0, (N+1), i)
        ps[ind[2:]] *= (1 - p)
        _ind = ind[ind >= c * i]
        _ind = _ind[(_ind % i == 0) * (_ind != i**2)]
        ps[_ind] *= (1 - p)
    return ps[2:].sum()

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

print(solve(N, p))
0