A12912 | Primes and Multiplication
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let's introduce some definitions that will be needed later.
Let $prime(x)$ be the set of prime divisors of $x$ . For example, $prime(140) = \{ 2, 5, 7 \}$ , $prime(169) = \{ 13 \}$ .
Let $g(x, p)$ be the maximum possible integer $p^k$ where $k$ is an integer such that $x$ is divisible by $p^k$ . For example:
- $g(45, 3) = 9$ ( $45$ is divisible by $3^2=9$ but not divisible by $3^3=27$ ),
- $g(63, 7) = 7$ ( $63$ is divisible by $7^1=7$ but not divisible by $7^2=49$ ).
Let $f(x, y)$ be the product of $g(y, p)$ for all $p$ in $prime(x)$ . For example:
- $f(30, 70) = g(70, 2) \cdot g(70, 3) \cdot g(70, 5) = 2^1 \cdot 3^0 \cdot 5^1 = 10$ ,
- $f(525, 63) = g(63, 3) \cdot g(63, 5) \cdot g(63, 7) = 3^2 \cdot 5^0 \cdot 7^1 = 63$ .
You have integers $x$ and $n$ . Calculate $f(x, 1) \cdot f(x, 2) \cdot \ldots \cdot f(x, n) \bmod{(10^{9} + 7)}$ .
Let $prime(x)$ be the set of prime divisors of $x$ . For example, $prime(140) = \{ 2, 5, 7 \}$ , $prime(169) = \{ 13 \}$ .
Let $g(x, p)$ be the maximum possible integer $p^k$ where $k$ is an integer such that $x$ is divisible by $p^k$ . For example:
- $g(45, 3) = 9$ ( $45$ is divisible by $3^2=9$ but not divisible by $3^3=27$ ),
- $g(63, 7) = 7$ ( $63$ is divisible by $7^1=7$ but not divisible by $7^2=49$ ).
Let $f(x, y)$ be the product of $g(y, p)$ for all $p$ in $prime(x)$ . For example:
- $f(30, 70) = g(70, 2) \cdot g(70, 3) \cdot g(70, 5) = 2^1 \cdot 3^0 \cdot 5^1 = 10$ ,
- $f(525, 63) = g(63, 3) \cdot g(63, 5) \cdot g(63, 7) = 3^2 \cdot 5^0 \cdot 7^1 = 63$ .
You have integers $x$ and $n$ . Calculate $f(x, 1) \cdot f(x, 2) \cdot \ldots \cdot f(x, n) \bmod{(10^{9} + 7)}$ .
输入格式
The only line contains integers $x$ and $n$ ( $2 \le x \le 10^{9}$ , $1 \le n \le 10^{18}$ ) — the numbers used in formula.
输出格式
Print the answer.
输入输出样例
输入 #1
10 2
输出 #1
2
输入 #2
20190929 1605
输出 #2
363165664
输入 #3
947 987654321987654321
输出 #3
593574252
In the first example, $f(10, 1) = g(1, 2) \cdot g(1, 5) = 1$ , $f(10, 2) = g(2, 2) \cdot g(2, 5) = 2$ .
In the second example, actual value of formula is approximately $1.597 \cdot 10^{171}$ . Make sure you print the answer modulo $(10^{9} + 7)$ .
In the third example, be careful about overflow issue.
In the second example, actual value of formula is approximately $1.597 \cdot 10^{171}$ . Make sure you print the answer modulo $(10^{9} + 7)$ .
In the third example, be careful about overflow issue.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted