【leetcode 简单】 第五十八题 计数质数

2018-08-26 17:31:32来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

统计所有小于非负整数 的质数的数量。

示例:

输入: 10
输出: 4
解释: 小于 10 的质数一共有 4 个, 它们是 2, 3, 5, 7 。


class Solution:
def countPrimes(self, n):
"""
:type n: int
:rtype: int
"""
isPrime = [1] * max(2, n)
isPrime[0],isPrime[1]=False,False
x = 2
while x * x < n:
if isPrime[x]:
p = x * x
while p < n:
isPrime[p] = 0
p += x
x +=1
return (sum(isPrime))

 

参考: https://en.wikipedia.org/wiki/Sieve_of_Eratosthenes

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Python 绑定方法与非绑定方法

下一篇:Python面试应急5分钟!