#41692: python TLE


970823leo@gmail.com (馮蛋餅)

學校 : 臺北市立陽明高級中學
編號 : 278748
來源 : [123.195.24.243]
最後登入時間 :
2024-11-08 23:34:26
a121. 質數又來囉 | From: [123.195.24.243] | 發表日期 : 2024-08-17 19:27

while True:
    try:
        a,b=map(int,input().split())
        c=0
        if a>b:
            a,b=b,a
        for i in range(a,b+1):
            if i%3!=0 and i%5!=0 and i%7!=0 and (i%6==1 or i%6==5) and i!=1:
                c+=1
            elif (i==2 or i==3 or i==5 or i==7)and i!=1:
                c+=1          
        print(c)
    except:
        break
 
ZeroJudge Forum