首页 > 代码库 > projecteuler---->problem=10----Summation of primes
projecteuler---->problem=10----Summation of primes
title:
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes below two million.
翻译:10以下的质数的和为2 + 3 + 5 + 7 = 17。
请求出200,0000以下所有质数的和。
import math,time def isOk(a): for i in range(2,int(math.sqrt(a))+1): if a%i==0: return False return True s=0 begin=time.time() for i in range(2,2000000): if isOk(i): s += i print s end = time.time() print end-begin
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。