結果

問題 No.144 エラトステネスのざる
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-01 00:10:57
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 93,952 KB
最終ジャッジ日時 2024-07-05 17:16:34
合計ジャッジ時間 5,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
92,032 KB
testcase_01 AC 89 ms
92,032 KB
testcase_02 AC 89 ms
92,288 KB
testcase_03 AC 89 ms
92,288 KB
testcase_04 AC 90 ms
92,032 KB
testcase_05 AC 89 ms
92,288 KB
testcase_06 AC 97 ms
92,928 KB
testcase_07 AC 91 ms
93,056 KB
testcase_08 AC 93 ms
92,800 KB
testcase_09 AC 93 ms
92,800 KB
testcase_10 AC 92 ms
93,312 KB
testcase_11 AC 92 ms
93,312 KB
testcase_12 AC 93 ms
93,056 KB
testcase_13 AC 189 ms
93,696 KB
testcase_14 AC 188 ms
93,312 KB
testcase_15 AC 191 ms
93,440 KB
testcase_16 AC 190 ms
93,952 KB
testcase_17 AC 190 ms
93,184 KB
testcase_18 AC 192 ms
93,696 KB
testcase_19 AC 190 ms
93,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,P=raw_input().split()
N=int(N)
P=float(P)
isPrime=[1.0 for i in xrange(1000001)]
isPrime[0]=0
isPrime[1]=0
ans=0
for i in range(2,N+1):
    #print i,isPrime[i]
    ans+=isPrime[i]
    for j in range(i+i,N+1,i):
        isPrime[j]*=(1-P)
print ans
0