当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6833:A Very Easy Math Problem

题目描述
Given you $n,x,k$ , find the value of the following formula:

$$
\sum_{a_1=1}^{n}\sum_{a_2=1}^{n}\ldots \sum_{a_x=1}^{n}\left (\prod_{j=1}^{x}a_j^k\right )f(\gcd(a_1,a_2,\ldots ,a_x))\cdot \gcd(a_1,a_2,\ldots ,a_x)
$$

$\gcd(a_1,a_2,\ldots ,a_n)$ is the greatest common divisor of $a_1,a_2,...,a_n$.

The function $f(x)$ is defined as follows:

If there exists an ingeter $k\ (k>1)$ , and $k^2$ is a divisor of $x$,
then $f(x)=0$, else $f(x)=1$.
输入解释
The first line contains three integers $t,k,x\ (1\le t \le 10^4,1\le k\le 10^9,1\le x\le 10^9)$

Then $t$ test cases follow. Each test case contains an integer $n\ (1\le n\le 2\times 10^5)$
输出解释
For each test case, print one integer — the value of the formula.

Because the answer may be very large, please output the answer modulo $10^9+7$.
输入样例
3 1 3
56
5
20
输出样例
139615686
4017
11554723
来自杭电HDUOJ的附加信息
Recommend IceyWang

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6833

最后修改于 2020-10-25T23:34:47+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
5000/3000MS(Java/Others) 65536/65536K(Java/Others)