結果

問題 No.144 エラトステネスのざる
ユーザー Yuki IwatakeYuki Iwatake
提出日時 2020-11-30 21:46:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 296 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 54,728 KB
最終ジャッジ日時 2024-09-13 02:37:04
合計ジャッジ時間 11,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
51,388 KB
testcase_01 AC 520 ms
44,196 KB
testcase_02 AC 522 ms
44,588 KB
testcase_03 AC 524 ms
44,448 KB
testcase_04 AC 530 ms
44,588 KB
testcase_05 AC 524 ms
44,360 KB
testcase_06 AC 519 ms
44,452 KB
testcase_07 AC 530 ms
44,068 KB
testcase_08 AC 521 ms
44,196 KB
testcase_09 AC 528 ms
44,068 KB
testcase_10 AC 522 ms
44,316 KB
testcase_11 AC 521 ms
44,320 KB
testcase_12 AC 519 ms
44,364 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import collections

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

dp = np.zeros(N+1, np.int32)

for i in range(2,N+1):
    dp[i:N+1:i]+=1
    
ans = 0
c = collections.Counter(dp)
for v,n in c.most_common():
    if v == 0:
        continue
    ans += n*(1-p)**(v-1)
print(ans)
0