結果

問題 No.144 エラトステネスのざる
ユーザー いたいた
提出日時 2024-12-04 13:00:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 425 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 81,592 KB
実行使用メモリ 137,216 KB
最終ジャッジ日時 2024-12-04 13:06:08
合計ジャッジ時間 22,838 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,728 KB
testcase_01 AC 35 ms
127,764 KB
testcase_02 AC 39 ms
57,472 KB
testcase_03 AC 36 ms
128,128 KB
testcase_04 AC 35 ms
57,472 KB
testcase_05 AC 37 ms
128,000 KB
testcase_06 AC 45 ms
66,432 KB
testcase_07 AC 45 ms
137,216 KB
testcase_08 AC 45 ms
66,336 KB
testcase_09 AC 45 ms
60,544 KB
testcase_10 AC 45 ms
66,176 KB
testcase_11 AC 45 ms
136,320 KB
testcase_12 AC 45 ms
66,304 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,p=map(float,input().split())
N=int(N)
p=1-p

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    c=lower_divisors + upper_divisors[::-1]
    return len(c)
ans=0
for i in range(2,N+1):
  ans+=pow(p,make_divisors(i)-2)
print(ans)
0