CF83D.Numbers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

One quite ordinary day Valera went to school (there's nowhere else he should go on a week day). In a maths lesson his favorite teacher Ms. Evans told students about divisors. Despite the fact that Valera loved math, he didn't find this particular topic interesting. Even more, it seemed so boring that he fell asleep in the middle of a lesson. And only a loud ringing of a school bell could interrupt his sweet dream.

Of course, the valuable material and the teacher's explanations were lost. However, Valera will one way or another have to do the homework. As he does not know the new material absolutely, he cannot do the job himself. That's why he asked you to help. You're his best friend after all, you just cannot refuse to help.

Valera's home task has only one problem, which, though formulated in a very simple way, has not a trivial solution. Its statement looks as follows: if we consider all positive integers in the interval [a;b][a;b] then it is required to count the amount of such numbers in this interval that their smallest divisor will be a certain integer kk (you do not have to consider divisor equal to one). In other words, you should count the amount of such numbers from the interval [a;b][a;b] , that are not divisible by any number between 22 and k1k-1 and yet are divisible by kk .

输入格式

The first and only line contains three positive integers aa , bb , kk ( 1<=a<=b<=2109,2<=k<=21091<=a<=b<=2·10^{9},2<=k<=2·10^{9} ).

输出格式

Print on a single line the answer to the given problem.

输入输出样例

  • 输入#1

    1 10 2
    

    输出#1

    5
    
  • 输入#2

    12 23 3
    

    输出#2

    2
    
  • 输入#3

    6 19 5
    

    输出#3

    0
    

说明/提示

Comments to the samples from the statement:

In the first sample the answer is numbers 2,4,6,8,102,4,6,8,10 .

In the second one — 15,2115,21

In the third one there are no such numbers.

首页