結果

問題 No.144 エラトステネスのざる
ユーザー yamamura-kyamamura-k
提出日時 2020-01-20 12:47:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 254 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-07-02 22:19:48
合計ジャッジ時間 4,427 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N,p = input().split(" ")
N = int(N)
p = float(p)
a = [0 for _ in range(N+1)]
for i in range(2,N+1):
    for j in range(i*2,N+1,i):
        a[j] += 1
e = 0
for i in range(2,N+1):
    if a[i] == 0:
        e += 1
    else:
        e += (1-p)**a[i]
print(e)
0