結果

問題 No.144 エラトステネスのざる
ユーザー しらっ亭しらっ亭
提出日時 2015-09-10 00:50:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 289 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-07-19 05:10:31
合計ジャッジ時間 10,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,368 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,496 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 27 ms
10,496 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    inp = input().split()
    N = int(inp[0])
    p = 1 - float(inp[1])

    s = [1.0] * (N + 1)
    for x in range(2, N + 1):
        for i in range(x + x, N + 1, x):
            s[i] *= p

    s[0] = 0
    s[1] = 0

    print(sum(s))

if __name__ == '__main__':
    solve()
0