欧拉项目010:2000000以内的素数和

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了欧拉项目010:2000000以内的素数和相关的知识,希望对你有一定的参考价值。

Summation of primes

Problem 10

The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.

Find the sum of all the primes below two million.

还是使用Sieve of Eratosthenes 算法

我的python代码例如以下:


#coding:utf-8
#从2到sqrt(n)
# 不用全部的都用遍历。从i**2,步长为i,i*2,i*3肯定都不是质素。
# 从i*i開始,仅仅要是i>2,是由于i*2,i*3已经被測试过,不用在计算了
from math import sqrt
def primesieve(n):
    l=range(n)
    l[1]=0
    for i in range(2,int(sqrt(n))):
        if l[i]:
            l[i**2::i]=[0]*((n-1-i**2)//i+1)
    return [x for x in l if x]
print sum(primesieve(2000000))


以上是关于欧拉项目010:2000000以内的素数和的主要内容,如果未能解决你的问题,请参考以下文章

[模板]线性筛素数(欧拉筛法)

[数论]欧拉函数&素数筛

10000以内质数的分布规律是啥?

N以内的素数计算(Java代码)

AcWing 220. 最大公约数 | 欧拉函数

素数的求法