結果

問題 No.144 エラトステネスのざる
ユーザー AT274_AT274_
提出日時 2019-10-24 21:52:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 83,852 KB
最終ジャッジ日時 2024-07-18 06:28:16
合計ジャッジ時間 2,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,160 KB
testcase_01 AC 34 ms
53,096 KB
testcase_02 AC 32 ms
54,016 KB
testcase_03 AC 32 ms
52,200 KB
testcase_04 AC 31 ms
53,456 KB
testcase_05 AC 32 ms
52,188 KB
testcase_06 AC 35 ms
58,752 KB
testcase_07 AC 36 ms
59,544 KB
testcase_08 AC 36 ms
60,056 KB
testcase_09 AC 38 ms
60,084 KB
testcase_10 AC 38 ms
59,440 KB
testcase_11 AC 36 ms
59,548 KB
testcase_12 AC 36 ms
60,420 KB
testcase_13 AC 156 ms
83,444 KB
testcase_14 AC 163 ms
83,832 KB
testcase_15 AC 173 ms
83,756 KB
testcase_16 AC 166 ms
83,568 KB
testcase_17 AC 174 ms
83,752 KB
testcase_18 AC 168 ms
83,852 KB
testcase_19 AC 162 ms
83,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = input().split()
N, p = int(N), float(p)
divisors_cnt = [0] * (N + 1)

for i in range(1, N + 1):
    for j in range(i, N + 1, i):
        divisors_cnt[j] += 1

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

print(ans)
0