結果

問題 No.144 エラトステネスのざる
ユーザー FromBooskaFromBooska
提出日時 2023-02-15 13:29:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 83,940 KB
最終ジャッジ日時 2024-07-17 23:12:21
合計ジャッジ時間 3,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,728 KB
testcase_01 AC 37 ms
53,412 KB
testcase_02 AC 37 ms
53,776 KB
testcase_03 AC 36 ms
53,224 KB
testcase_04 AC 37 ms
53,368 KB
testcase_05 AC 38 ms
52,508 KB
testcase_06 AC 43 ms
61,440 KB
testcase_07 AC 44 ms
60,936 KB
testcase_08 AC 43 ms
60,900 KB
testcase_09 AC 43 ms
60,836 KB
testcase_10 AC 43 ms
61,456 KB
testcase_11 AC 44 ms
60,700 KB
testcase_12 AC 44 ms
59,880 KB
testcase_13 AC 157 ms
83,492 KB
testcase_14 AC 184 ms
83,768 KB
testcase_15 AC 174 ms
83,752 KB
testcase_16 AC 192 ms
83,936 KB
testcase_17 AC 188 ms
83,628 KB
testcase_18 AC 190 ms
83,940 KB
testcase_19 AC 163 ms
83,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0