projecteuler---->problem=10----Summation of primes

Posted cxchanpin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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


以上是关于projecteuler---->problem=10----Summation of primes的主要内容,如果未能解决你的问题,请参考以下文章

project euler做题记录

project euler 169

ProjectEuler237 Tours on a 4 x n playing board

C++ 似乎比 Project Euler 的 Python Ruby 慢得多

projecteuler第二题

数组索引超出界限项目欧拉问题17