题库练习 Geometrical Progression
← 上一题 下一题 →

A10668 | Geometrical Progression

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

For given $n$ , $l$ and $r$ find the number of distinct geometrical progression, each of which contains $n$ distinct integers not less than $l$ and not greater than $r$ . In other words, for each progression the following must hold: $l<=a_{i}<=r$ and $a_{i}≠a_{j}$ , where $a_{1},a_{2},...,a_{n}$ is the geometrical progression, $1<=i,j<=n$ and $i≠j$ .

Geometrical progression is a sequence of numbers $a_{1},a_{2},...,a_{n}$ where each term after first is found by multiplying the previous one by a fixed non-zero number $d$ called the common ratio. Note that in our task $d$ may be non-integer. For example in progression $4,6,9$ , common ratio is ![](/uploads/acgo/image/b263c84482930448_f4e11ef9d33b.jpeg).

Two progressions $a_{1},a_{2},...,a_{n}$ and $b_{1},b_{2},...,b_{n}$ are considered different, if there is such $i$ ( $1<=i<=n$ ) that $a_{i}≠b_{i}$ .

输入格式

The first and the only line cotains three integers $n$ , $l$ and $r$ ( $1<=n<=10^{7},1<=l<=r<=10^{7}$ ).

输出格式

Print the integer $K$ — is the answer to the problem.

输入输出样例

输入 #1
1 1 10
输出 #1
10
输入 #2
2 6 9
输出 #2
12
输入 #3
3 1 10
输出 #3
8
输入 #4
3 3 10
输出 #4
2
C++ 编辑器
输入
输出