python - 编程以在 1 秒内找到 100 万以内的所有素数或尽可能接近它?

标签 python python-2.7 primes

我想在 1 秒内找到所有低于 100 万的素数或尽可能接近它。
这是我的代码:-

import time
n = 1000000
start = time.time()

primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 
61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 
149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 
229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 
313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 
409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 
499, 503, 509, 521, 523, 541, 547, 557, 563, 569, 571, 577, 587, 593, 599, 
601, 607, 613, 617, 619, 631, 641, 643, 647, 653, 659, 661, 673, 677, 683, 
691, 701, 709, 719, 727, 733, 739, 743, 751, 757, 761, 769, 773, 787, 797, 
809, 811, 821, 823, 827, 829, 839, 853, 857, 859, 863, 877, 881, 883, 887, 
907, 911, 919, 929, 937, 941, 947, 953, 967, 971, 977, 983, 991, 997]
for j in range(1,n+1):
    for i in range(0,len(primes)):
        if j % primes[i] == 0:
                break
    else:
        primes.append(j)
#print primes
end = time.time() - start
print end    

我知道这在技术上是作弊,但我只是想让它更快。
当前时间 = 2.5 秒(大约)

是否有可能在 1 秒内计算出所有这些或接近?

最佳答案

您可以使用Sieve of Eratosthenes ,实现如下:

编辑:添加了一些修改以加快速度,感谢@rossum。

n = 1000000

is_prime = [False, False] + [True] * (n - 1)
primes = [2]

for j in range(4, n + 1, 2):
    is_prime[j] = False

for i in range(3, n + 1, 2):
    if is_prime[i]:
        primes.append(i)
        for j in range(i * i, n + 1, i):
            is_prime[j] = False

print len(primes) # ==> 78498, which is really the number of primes below 1 million
print primes[:10] # ==> [2, 3, 5, 7, 11, 13, 17, 19, 23, 29]

在我的计算机上大约需要 1 到 2 秒。

关于python - 编程以在 1 秒内找到 100 万以内的所有素数或尽可能接近它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55199558/

相关文章:

python - Pandas QuarterBegin() : Possible Bug when calculating First of quarter

scala - 在 Scala 的 O(sqrt(n)) 中检查数字是否为质数

python - 是否可以引用未知数量的变量?

python - 如何在我的 WSGI apache 上为 Django 执行多个进程?

python - 捕获单词并重写

python - 在 Pygame 中绘制箭头

python - numpy.sum 未返回预期值

javascript - 在 Javascript : Fails only if argument is prime 中通过埃拉托色尼筛法求和素数

python - 成功注销后重定向django内置注销 View

python - os.path.exists 在 python 中没有按预期工作