题库练习 Coprime Arrays
← 上一题 下一题 →

A11500 | Coprime Arrays

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

题目描述

Let's call an array $a$ of size $n$ coprime iff $gcd(a_{1},a_{2},...,a_{n})=1$ , where $gcd$ is the greatest common divisor of the arguments.

You are given two numbers $n$ and $k$ . For each $i$ ( $1<=i<=k$ ) you have to determine the number of coprime arrays $a$ of size $n$ such that for every $j$ ( $1<=j<=n$ ) $1<=a_{j}<=i$ . Since the answers can be very large, you have to calculate them modulo $10^{9}+7$ .

输入格式

The first line contains two integers $n$ and $k$ ( $1<=n,k<=2·10^{6}$ ) — the size of the desired arrays and the maximum upper bound on elements, respectively.

输出格式

Since printing $2·10^{6}$ numbers may take a lot of time, you have to output the answer in such a way:

Let $b_{i}$ be the number of coprime arrays with elements in range $[1,i]$ , taken modulo $10^{9}+7$ . You have to print ![](/uploads/luogu/CF915G/2fc53236b723e26b8283924063ed7dc9ecf86519_67f619251a85.png), taken modulo $10^{9}+7$ . Here ![](/uploads/acgo/image/2115d5729b45dec2_b253dfcba443.jpeg) denotes bitwise xor operation (^ in C++ or Java, xor in Pascal).

输入输出样例

输入 #1
3 4
输出 #1
82
输入 #2
2000000 8
输出 #2
339310063
C++ 编辑器
输入
输出