結果

問題 No.144 エラトステネスのざる
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-09-16 21:29:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 84,080 KB
最終ジャッジ日時 2024-06-22 03:37:37
合計ジャッジ時間 2,777 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,244 KB
testcase_01 AC 40 ms
52,772 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 36 ms
53,072 KB
testcase_04 AC 36 ms
52,088 KB
testcase_05 AC 37 ms
52,120 KB
testcase_06 AC 46 ms
60,052 KB
testcase_07 AC 46 ms
60,244 KB
testcase_08 AC 45 ms
61,288 KB
testcase_09 AC 47 ms
60,312 KB
testcase_10 AC 43 ms
60,804 KB
testcase_11 AC 43 ms
61,004 KB
testcase_12 AC 43 ms
61,688 KB
testcase_13 AC 149 ms
83,512 KB
testcase_14 AC 169 ms
83,572 KB
testcase_15 AC 159 ms
83,716 KB
testcase_16 AC 172 ms
83,588 KB
testcase_17 AC 167 ms
83,824 KB
testcase_18 AC 170 ms
84,080 KB
testcase_19 AC 171 ms
83,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(float,input().split())
ans = 0
n = int(n)
b = [0]*(n+1)

for i in range(2,n+1):
    
    ans += pow(1-p, b[i])
    
    j = 1
    while i*j <= n:
        b[i*j] += 1
        j += 1
print(ans)
0