結果

問題 No.144 エラトステネスのざる
ユーザー FromBooskaFromBooska
提出日時 2023-02-25 21:06:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 92,200 KB
最終ジャッジ日時 2024-09-13 15:51:04
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 45 ms
59,136 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 275 ms
91,648 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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 p in range(2, N+1):
    for q in range(2*p, N+1, p):
        is_prime[q] = 0
        div_count[q] += 1

EV = 0
for i in range(2, N+1):
    EV += 1/(2**div_count[i])
print(EV)
0