0007. 第X个质数
* * * *
拉格朗日计划
* * * *
第X个质数

前$6$个质数分别是: $2,3,5,7,11,13$,第$10001$个质数是多少?

本题难度:



解答

动态维护一张素数表即可。

import math

primeList=[2,3,5,7,11,13,17,19,23]

n=24

while len(primeList)<10001:
    n+=1
    m=math.sqrt(n)
    i=0
    while primeList[i]<=m and n%primeList[i]:
        i+=1
    if primeList[i]>m:
        primeList.append(n)

print n