結果

問題 No.144 エラトステネスのざる
ユーザー vwxyzvwxyz
提出日時 2023-04-03 07:50:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 100,396 KB
最終ジャッジ日時 2024-09-25 00:43:49
合計ジャッジ時間 3,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,460 KB
testcase_01 AC 38 ms
52,336 KB
testcase_02 AC 38 ms
52,196 KB
testcase_03 AC 39 ms
52,824 KB
testcase_04 AC 38 ms
52,168 KB
testcase_05 AC 38 ms
52,820 KB
testcase_06 AC 43 ms
58,344 KB
testcase_07 AC 43 ms
59,444 KB
testcase_08 AC 42 ms
58,352 KB
testcase_09 AC 42 ms
59,832 KB
testcase_10 AC 44 ms
58,184 KB
testcase_11 AC 42 ms
58,704 KB
testcase_12 AC 42 ms
58,476 KB
testcase_13 AC 192 ms
99,340 KB
testcase_14 AC 215 ms
99,520 KB
testcase_15 AC 217 ms
99,420 KB
testcase_16 AC 213 ms
99,704 KB
testcase_17 AC 222 ms
99,712 KB
testcase_18 AC 220 ms
100,396 KB
testcase_19 AC 224 ms
99,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

def Divisor_Counts(N):
    divisor_counts=[float('inf')]+[1]*N
    for p in range(2,N+1):
        if divisor_counts[p]!=1:
            continue
        pp=p
        e=1
        while pp<=N:
            for i in range(pp,N+1,pp):
                divisor_counts[i]+=divisor_counts[i]//e
            e+=1
            pp*=p
    return divisor_counts

N,p=readline().split()
N=int(N)
p=float(p)
ans=0
cnt=Divisor_Counts(N)
for n in range(2,N+1):
    ans+=(1-p)**(cnt[n]-2)
print(ans)
0