結果

問題 No.144 エラトステネスのざる
ユーザー gorugo30gorugo30
提出日時 2021-03-16 22:24:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 1,228 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-11-08 17:46:47
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 44 ms
59,008 KB
testcase_07 AC 44 ms
59,264 KB
testcase_08 AC 43 ms
59,392 KB
testcase_09 AC 43 ms
59,264 KB
testcase_10 AC 43 ms
59,008 KB
testcase_11 AC 43 ms
59,392 KB
testcase_12 AC 43 ms
59,264 KB
testcase_13 AC 165 ms
83,840 KB
testcase_14 AC 184 ms
84,096 KB
testcase_15 AC 186 ms
83,968 KB
testcase_16 AC 183 ms
84,096 KB
testcase_17 AC 192 ms
83,968 KB
testcase_18 AC 187 ms
83,968 KB
testcase_19 AC 179 ms
83,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = [0] * (N + 1)
for x in range(2, N + 1):
    for y in range(2 * x, N + 1, x):
        cnt[y] += 1
ans = 0
for i in range(2, N + 1):
    ans += (1 - p) ** cnt[i]
print(ans)
0