結果

問題 No.144 エラトステネスのざる
ユーザー vwxyzvwxyz
提出日時 2023-04-03 07:49:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 829 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,352 KB
最終ジャッジ日時 2024-09-25 00:43:36
合計ジャッジ時間 6,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 786 ms
26,188 KB
testcase_14 AC 804 ms
26,352 KB
testcase_15 AC 801 ms
26,184 KB
testcase_16 AC 809 ms
26,292 KB
testcase_17 AC 819 ms
26,284 KB
testcase_18 AC 829 ms
26,268 KB
testcase_19 AC 794 ms
26,296 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