結果

問題 No.144 エラトステネスのざる
ユーザー poet_nayutapoet_nayuta
提出日時 2018-08-19 16:15:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 247 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 104,220 KB
最終ジャッジ日時 2024-11-17 11:50:41
合計ジャッジ時間 32,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,131 ms
49,164 KB
testcase_01 AC 541 ms
104,220 KB
testcase_02 AC 545 ms
49,172 KB
testcase_03 AC 542 ms
103,836 KB
testcase_04 AC 546 ms
49,156 KB
testcase_05 AC 535 ms
103,960 KB
testcase_06 AC 545 ms
49,684 KB
testcase_07 AC 546 ms
104,216 KB
testcase_08 AC 546 ms
49,044 KB
testcase_09 AC 546 ms
104,084 KB
testcase_10 AC 547 ms
49,792 KB
testcase_11 AC 549 ms
103,964 KB
testcase_12 AC 541 ms
49,176 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

def solve(N, p):
    ps = np.ones(N+1)
    for i in range(2, N+1):
        ind = np.arange((N+i)//i) * i
        ps[ind[2:]] *= (1 - p)
    return ps[2:].sum()

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

print(solve(N, p))
0