题解 | #质数#
质数
http://www.nowcoder.com/practice/932c48cee6484f58a6983275e8f79370
再贴一个python3的:
class Solution: def numbers(self , a , b , c , d , p ): # write code here #我吐了忘了python与其他语言不一样。。。。 return (b//p-(a-1)//p)*(d-c+1)+(d//p-(c-1)//p)*(b-a+1)-(b//p-(a-1)//p)*(d//p-(c-1)//p)