查找给定范围内的特殊数字

时间:2014-04-15 20:36:16

标签: python algorithm numbers

我无法降低此问题的复杂性。请提供一些更好的方法。

是否有一个我不知道的数学公式,或者可以通过更好的方法来完成?

Problem Link

说明

 A special number is not divisible by any number of the form Z*Z where (Z>1).

问题:查找给定范围内的特殊数字。

Integer Limit:10^9

我这样做了:

    import math
    def special(x):
        flag=1
        i=2
        if(x==0 or x==1 or x==2):
            return 1
        while(i*i <= x):               //This is the best i can think to limit the numbers.
            if(x%(i*i)==0):
                flag=0
                break
            i=i+1
        return flag

    t=int(raw_input())
    while(t):
        x,y=map(int,raw_input().split())
        count=0
        for i in xrange(x,y+1):
            if(special(i)):
                count+=1
        print(count)
        t=t-1

1 个答案:

答案 0 :(得分:1)

special(x)中,您只需迭代小于或等于sqrt(x)的素数。 所以我会预先计算一个素数列表(Fastest way to list all primes below N)。