結果

問題 No.144 エラトステネスのざる
ユーザー hhhhub000hhhhub000
提出日時 2018-12-06 22:59:09
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 1,382 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-09-14 02:36:12
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,800 KB
testcase_01 AC 87 ms
75,392 KB
testcase_02 AC 87 ms
75,392 KB
testcase_03 AC 75 ms
75,648 KB
testcase_04 AC 74 ms
75,560 KB
testcase_05 AC 86 ms
75,648 KB
testcase_06 AC 95 ms
76,800 KB
testcase_07 AC 90 ms
77,056 KB
testcase_08 AC 91 ms
77,440 KB
testcase_09 AC 90 ms
77,184 KB
testcase_10 AC 90 ms
77,440 KB
testcase_11 AC 89 ms
77,056 KB
testcase_12 AC 91 ms
77,312 KB
testcase_13 AC 190 ms
100,992 KB
testcase_14 AC 210 ms
100,992 KB
testcase_15 AC 208 ms
101,120 KB
testcase_16 AC 211 ms
100,992 KB
testcase_17 AC 207 ms
101,248 KB
testcase_18 AC 217 ms
100,736 KB
testcase_19 AC 207 ms
100,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INPUT = raw_input().split()
N,P = [int(INPUT[0]),float(INPUT[1])]
Pmap = [0,0]+[1.0] * (N-1)
for sosu in range(2,N):
   mul=2
   while sosu*mul<=N:
     Pmap[sosu*mul]*=1-P
     mul+=1
print(sum(Pmap))
0