結果
問題 | No.144 エラトステネスのざる |
ユーザー | buey_t |
提出日時 | 2022-12-12 01:06:28 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 242,440 KB |
最終ジャッジ日時 | 2024-10-15 20:04:45 |
合計ジャッジ時間 | 6,251 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
87,296 KB |
testcase_01 | AC | 144 ms
86,784 KB |
testcase_02 | AC | 141 ms
87,072 KB |
testcase_03 | AC | 138 ms
86,784 KB |
testcase_04 | AC | 140 ms
86,784 KB |
testcase_05 | AC | 143 ms
86,784 KB |
testcase_06 | AC | 154 ms
89,272 KB |
testcase_07 | AC | 154 ms
89,600 KB |
testcase_08 | AC | 158 ms
89,344 KB |
testcase_09 | AC | 152 ms
89,728 KB |
testcase_10 | AC | 153 ms
89,772 KB |
testcase_11 | AC | 154 ms
89,728 KB |
testcase_12 | AC | 157 ms
89,472 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
ソースコード
from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial import heapq import bisect from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP from functools import lru_cache import sys sys.setrecursionlimit(10**8) N, p = map(float, input().split()) N = int(N) ans = 0 memo = defaultdict(int) for i in range(2, N+1): for j in range(i+i, N+1, i): #三つ目でstep指定 memo[j] += 1 ans += (1-p)**memo[i] print(ans)