結果

問題 No.144 エラトステネスのざる
ユーザー FromBooskaFromBooska
提出日時 2023-02-15 13:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 1,124 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 84,236 KB
最終ジャッジ日時 2024-07-17 23:16:43
合計ジャッジ時間 2,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,148 KB
testcase_01 AC 35 ms
52,336 KB
testcase_02 AC 35 ms
53,980 KB
testcase_03 AC 35 ms
52,156 KB
testcase_04 AC 35 ms
52,584 KB
testcase_05 AC 37 ms
52,404 KB
testcase_06 AC 42 ms
59,232 KB
testcase_07 AC 41 ms
59,352 KB
testcase_08 AC 40 ms
60,612 KB
testcase_09 AC 41 ms
60,916 KB
testcase_10 AC 43 ms
60,556 KB
testcase_11 AC 42 ms
59,752 KB
testcase_12 AC 45 ms
60,168 KB
testcase_13 AC 147 ms
83,996 KB
testcase_14 AC 169 ms
83,928 KB
testcase_15 AC 170 ms
83,764 KB
testcase_16 AC 170 ms
83,892 KB
testcase_17 AC 168 ms
84,236 KB
testcase_18 AC 175 ms
84,064 KB
testcase_19 AC 163 ms
83,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 落とし穴がある。たとえば8
# 2でも4でも倍数としてひっかからなければ8は生き残る
# 2で8がひっかからない確率は1-exe_prob
# 4で8がひっかからないかどうかを考えるときに4が生きているか死んでいるかの場合分けをしたくなる
# しかし4が死んでいれば8も死んでいる、つまり完全相関
# つまり4まで来たときに8が生き残っていれば4も生き残っている
# 8が生き残るかは2と4の2回のテストをクリアすればいい、4の場合分けは必要ない
# つまり各数の約数の個数だけが必要となる
# (1-exe_prob)**約数個数は時間かかるのでpow
# さらに約数個数は下から積み上げる、エラトステネスの容量、そうしないとTLE

N, exe_prob = map(float, input().split())
N = int(N)

div_count = [0]*(N+1)

for p in range(2, N+1):
    for q in range(p*2, N+1, p):
        div_count[q] += 1

ans = 0
for i in range(2, N+1):
    if div_count[i] == 0:
        ans += 1
    else:
        ans += pow(1-exe_prob, div_count[i])

print(ans)

#print(div_count)
0