結果

問題 No.144 エラトステネスのざる
ユーザー tnodino
提出日時 2022-06-12 12:30:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 318 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 83,284 KB
最終ジャッジ日時 2024-09-22 22:42:57
合計ジャッジ時間 4,923 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10 TLE * 1 -- * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
def divisor(N):
    ret = 0
    for i in range(2,int(sqrt(N))+1):
        if N % i == 0:
            ret += 1
            if N // i != i:
                ret += 1
    return ret

N,p = map(float,input().split())
N = int(N)
ans = 0
for i in range(2,N+1):
    ans += pow(1-p, divisor(i))
print(ans)
0