結果
問題 | No.144 エラトステネスのざる |
ユーザー | cherrypi59 |
提出日時 | 2018-06-23 12:50:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 460 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,696 KB |
最終ジャッジ日時 | 2024-06-30 18:16:45 |
合計ジャッジ時間 | 4,209 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,696 KB |
testcase_01 | AC | 28 ms
10,624 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | AC | 31 ms
10,496 KB |
testcase_05 | AC | 28 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | AC | 30 ms
10,624 KB |
testcase_09 | AC | 32 ms
10,880 KB |
testcase_10 | AC | 33 ms
10,752 KB |
testcase_11 | AC | 31 ms
10,624 KB |
testcase_12 | AC | 31 ms
10,624 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
def div(x, p): z, idx, cnt = 0, 2, 0 while idx * idx <= x: if x % idx == 0: z += p * (1-p) ** cnt cnt += 1 if x // idx != idx: z += p * (1 - p) ** cnt cnt += 1 idx += 1 return z def main(): n, p = map(float, input().split()) num = 0 for i in range(2, int(n)+1): num += div(i, p) print(n-1-num) if __name__ == '__main__': main()