3751.Maxim and Calculator

Time Limit: 1s Memory Limit: 256MB

Maxim has got a calculator. The calculator has two integer cells. Initially, the first cell contains number 1, and the second cell contains number 0. In one move you can perform one of the following operations:
Let's assume that at the current time the first cell contains number a, and the second cell contains number b. Write to the second cell number b+1; Let's assume that at the current time the first cell contains number a, and the second cell contains number b. Write to the first cell number a \cdot b.
Maxim is wondering, how many integers x (l \le x \le r) are there, such that we can write the number x to the first cell of the calculator, having performed at most p moves.

Input Format(From the terminal/stdin)

The first line contains three integers: l, r, p (2 \le l \le r \le 109,1 \le p \le 100).

The numbers in the line are separated by single spaces.

Output Format(To the terminal/stdout)

In a single line print a single integer - the answer to the problem.

Sample Input 1

Copy
2 10 3
 ·  · \n

Sample Output 1

Copy
1
 \n

Sample Input 2

Copy
2 111 100
 ·   ·   \n

Sample Output 2

Copy
106
   \n

Sample Input 3

Copy
2 111 11
 ·   ·  \n

Sample Output 3

Copy
47
  \n

Submit

请先 登录

© 2025 FAQs