結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,808 KB
testcase_01 AC 36 ms
53,572 KB
testcase_02 AC 36 ms
53,892 KB
testcase_03 AC 37 ms
52,240 KB
testcase_04 AC 37 ms
53,208 KB
testcase_05 AC 36 ms
52,496 KB
testcase_06 AC 42 ms
59,560 KB
testcase_07 AC 45 ms
60,352 KB
testcase_08 AC 42 ms
59,528 KB
testcase_09 AC 42 ms
59,956 KB
testcase_10 AC 46 ms
59,284 KB
testcase_11 AC 42 ms
59,860 KB
testcase_12 AC 42 ms
59,400 KB
testcase_13 AC 152 ms
83,768 KB
testcase_14 AC 177 ms
84,164 KB
testcase_15 AC 178 ms
84,232 KB
testcase_16 AC 177 ms
84,152 KB
testcase_17 AC 178 ms
84,000 KB
testcase_18 AC 187 ms
84,200 KB
testcase_19 AC 167 ms
84,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p=map(float,input().split())
n=int(n)
ct=[0]*(n+1)
for i in range(1,n+1):
  for j in range(n//i):
    ct[i*(j+1)]+=1
ans=0
for i in range(2,n+1):
  ans+=(1-p)**(ct[i]-2)
print(ans)
0