結果
問題 | No.144 エラトステネスのざる |
ユーザー | buey_t |
提出日時 | 2022-12-12 00:40:02 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 668 bytes |
コンパイル時間 | 311 ms |
コンパイル使用メモリ | 81,808 KB |
実行使用メモリ | 96,112 KB |
最終ジャッジ日時 | 2024-10-15 19:40:58 |
合計ジャッジ時間 | 5,983 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
93,844 KB |
testcase_01 | AC | 124 ms
86,928 KB |
testcase_02 | AC | 148 ms
86,904 KB |
testcase_03 | AC | 120 ms
86,532 KB |
testcase_04 | AC | 114 ms
86,708 KB |
testcase_05 | AC | 114 ms
86,544 KB |
testcase_06 | AC | 124 ms
89,588 KB |
testcase_07 | AC | 128 ms
89,556 KB |
testcase_08 | AC | 127 ms
89,476 KB |
testcase_09 | AC | 123 ms
89,348 KB |
testcase_10 | AC | 126 ms
89,724 KB |
testcase_11 | AC | 125 ms
89,436 KB |
testcase_12 | AC | 122 ms
89,348 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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) #2は扱いにくいから先に足しておく ans = 1 for i in range(3, N+1): count = 0 for j in range(2, int(sqrt(i))+1): if i%j == 0: count += 1 #重複に注意 if i//j != j: count += 1 ans += (1-p)**count print(ans)