結果

問題 No.144 エラトステネスのざる
ユーザー FromBooskaFromBooska
提出日時 2023-02-25 21:15:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 92,012 KB
最終ジャッジ日時 2024-09-13 15:58:42
合計ジャッジ時間 3,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 38 ms
53,252 KB
testcase_02 AC 37 ms
52,868 KB
testcase_03 AC 37 ms
53,032 KB
testcase_04 AC 37 ms
51,756 KB
testcase_05 AC 37 ms
52,696 KB
testcase_06 AC 43 ms
59,288 KB
testcase_07 AC 43 ms
60,676 KB
testcase_08 AC 42 ms
60,192 KB
testcase_09 AC 43 ms
60,208 KB
testcase_10 AC 43 ms
59,696 KB
testcase_11 AC 44 ms
60,944 KB
testcase_12 AC 42 ms
60,012 KB
testcase_13 AC 261 ms
91,396 KB
testcase_14 AC 287 ms
91,756 KB
testcase_15 AC 304 ms
91,652 KB
testcase_16 AC 284 ms
91,652 KB
testcase_17 AC 290 ms
91,832 KB
testcase_18 AC 280 ms
92,012 KB
testcase_19 AC 267 ms
91,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 確率が独立でなく従属なケース
# たとえば8
# 2のときに倍数を除くのを忘れていれば、4も8も生きている
# 4が生きている場合、死んでいる場合の場合分けは必要ない

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

is_prime = [1]*(N+1)
is_prime[0] = 0  
is_prime[1] = 0
div_count = [0]*(N+1)

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

EV = 0
for i in range(2, N+1):
    if is_prime[i] == 1:
        EV += 1
    else:
        EV += (1-p)**div_count[i]
print(EV)


0