結果

問題 No.144 エラトステネスのざる
ユーザー あかりきあかりき
提出日時 2021-02-23 21:18:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 770 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 85,612 KB
最終ジャッジ日時 2024-09-22 15:35:41
合計ジャッジ時間 7,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,320 KB
testcase_01 AC 41 ms
54,816 KB
testcase_02 AC 41 ms
54,068 KB
testcase_03 AC 41 ms
55,264 KB
testcase_04 AC 42 ms
54,592 KB
testcase_05 AC 41 ms
55,104 KB
testcase_06 AC 73 ms
72,484 KB
testcase_07 AC 72 ms
73,664 KB
testcase_08 AC 75 ms
72,656 KB
testcase_09 AC 73 ms
73,348 KB
testcase_10 AC 72 ms
72,776 KB
testcase_11 AC 72 ms
72,684 KB
testcase_12 AC 72 ms
72,808 KB
testcase_13 AC 721 ms
85,312 KB
testcase_14 AC 756 ms
85,004 KB
testcase_15 AC 729 ms
85,120 KB
testcase_16 AC 738 ms
85,612 KB
testcase_17 AC 763 ms
85,196 KB
testcase_18 AC 770 ms
85,320 KB
testcase_19 AC 732 ms
85,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
n,p=map(float,input().split())
n=int(n)
l=[i for i in range(n+1)]
for i in range(2,n+1):
  if l[i]==i:
    for j in range(1,n//i+1):
      if i*j<=n:
        l[i*j]=i

ans=0
for i in range(2,n+1):
  x=i
  d=[]
  while x!=1:
    d.append(l[x])
    x//=l[x]
  d=collections.Counter(d)
  d=list(d.values())
  ct=1
  for j in range(len(d)):
    ct*=(d[j]+1)
  ct-=2
  ans+=(1-p)**ct
print(ans)
0