結果

問題 No.144 エラトステネスのざる
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-22 22:33:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 84,204 KB
最終ジャッジ日時 2024-07-03 18:57:05
合計ジャッジ時間 2,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,360 KB
testcase_01 AC 36 ms
53,284 KB
testcase_02 AC 36 ms
52,132 KB
testcase_03 AC 34 ms
52,752 KB
testcase_04 AC 38 ms
52,748 KB
testcase_05 AC 34 ms
52,840 KB
testcase_06 AC 39 ms
60,208 KB
testcase_07 AC 42 ms
61,004 KB
testcase_08 AC 39 ms
59,620 KB
testcase_09 AC 41 ms
60,640 KB
testcase_10 AC 40 ms
60,348 KB
testcase_11 AC 42 ms
60,184 KB
testcase_12 AC 41 ms
59,688 KB
testcase_13 AC 142 ms
83,784 KB
testcase_14 AC 166 ms
84,204 KB
testcase_15 AC 168 ms
83,920 KB
testcase_16 AC 167 ms
83,788 KB
testcase_17 AC 167 ms
83,816 KB
testcase_18 AC 171 ms
84,124 KB
testcase_19 AC 165 ms
83,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = input().split()
n = int(n)
p = float(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

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