結果

問題 No.144 エラトステネスのざる
ユーザー june19312june19312
提出日時 2024-05-07 16:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 91,644 KB
最終ジャッジ日時 2024-11-30 11:03:59
合計ジャッジ時間 2,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,616 KB
testcase_01 AC 36 ms
52,308 KB
testcase_02 AC 34 ms
53,284 KB
testcase_03 AC 35 ms
52,352 KB
testcase_04 AC 35 ms
52,928 KB
testcase_05 AC 35 ms
52,892 KB
testcase_06 AC 42 ms
60,748 KB
testcase_07 AC 41 ms
61,148 KB
testcase_08 AC 41 ms
60,680 KB
testcase_09 AC 41 ms
60,680 KB
testcase_10 AC 41 ms
59,912 KB
testcase_11 AC 42 ms
61,464 KB
testcase_12 AC 43 ms
60,112 KB
testcase_13 AC 203 ms
91,432 KB
testcase_14 AC 197 ms
91,276 KB
testcase_15 AC 195 ms
91,528 KB
testcase_16 AC 197 ms
91,196 KB
testcase_17 AC 193 ms
91,644 KB
testcase_18 AC 201 ms
91,492 KB
testcase_19 AC 195 ms
91,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P = map(str,input().split())
N = int(N)
P = float(P)

ans = [1]*(N+1)
ans[0] = 0
ans[1] = 0

for i in range(2,N+1):
    nex = i
    for j in range(2,10**7):
        if nex*j > N:
            break
        ans[nex*j] *= (1-P)

print(sum(ans))


0