結果

問題 No.144 エラトステネスのざる
ユーザー poet_nayutapoet_nayuta
提出日時 2018-08-19 17:24:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 120,208 KB
最終ジャッジ日時 2024-11-17 15:39:19
合計ジャッジ時間 28,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
50,812 KB
testcase_01 AC 523 ms
103,076 KB
testcase_02 WA -
testcase_03 AC 525 ms
104,108 KB
testcase_04 AC 530 ms
51,068 KB
testcase_05 AC 521 ms
103,760 KB
testcase_06 AC 517 ms
50,940 KB
testcase_07 AC 517 ms
43,848 KB
testcase_08 WA -
testcase_09 AC 506 ms
44,364 KB
testcase_10 AC 537 ms
44,116 KB
testcase_11 AC 527 ms
44,236 KB
testcase_12 AC 522 ms
43,616 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,893 ms
60,324 KB
testcase_19 AC 1,927 ms
120,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

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

print(solve(N, p))
0