結果

問題 No.144 エラトステネスのざる
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-22 22:25:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 303 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 102,120 KB
最終ジャッジ日時 2024-07-03 18:56:37
合計ジャッジ時間 6,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
87,368 KB
testcase_01 AC 112 ms
79,956 KB
testcase_02 AC 115 ms
79,956 KB
testcase_03 AC 110 ms
80,256 KB
testcase_04 AC 110 ms
80,212 KB
testcase_05 AC 110 ms
80,184 KB
testcase_06 AC 203 ms
82,552 KB
testcase_07 AC 292 ms
82,932 KB
testcase_08 AC 250 ms
82,904 KB
testcase_09 AC 227 ms
83,040 KB
testcase_10 AC 243 ms
82,796 KB
testcase_11 AC 210 ms
82,588 KB
testcase_12 AC 172 ms
82,524 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
n, p = input().split()
n = int(n)
p = Decimal(p)

cnt = [0] * (n + 1)

for i in range(2, n + 1):
    cnt[i] += 1
    for j in range(i * 2, n + 1, i):
        cnt[j] += 1
#print(cnt)

res = cnt.count(1)
for c in cnt:
    if c > 1:
        res += (1 - p) ** (c - 1)
print(res)
0