結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
51,456 KB
testcase_06 AC 44 ms
59,136 KB
testcase_07 AC 43 ms
59,392 KB
testcase_08 AC 44 ms
59,392 KB
testcase_09 AC 44 ms
59,136 KB
testcase_10 AC 43 ms
59,776 KB
testcase_11 AC 45 ms
59,392 KB
testcase_12 AC 44 ms
59,392 KB
testcase_13 AC 225 ms
91,648 KB
testcase_14 AC 234 ms
91,136 KB
testcase_15 AC 223 ms
91,392 KB
testcase_16 AC 228 ms
91,520 KB
testcase_17 AC 221 ms
91,136 KB
testcase_18 AC 236 ms
91,264 KB
testcase_19 AC 238 ms
91,264 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