首页 > 代码库 > Summation of primes
Summation of primes
是我算法不对,还是笔记本CPU太差?
我优化了两次,还是花了三四个小时来得到结果。
在输出上加1就是最终结果。
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes below two million.
def isprime(n): boolisprime = True for i in xrange(3,n): if n % i == 0: boolisprime = False break return boolisprime def primenumber(n): i = 1 sumprime = 0 while True: if isprime(i) == True: sumprime += i print i,sumprime if i > n: break i += 2 return sumprime print primenumber(2000000)+1
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。