题库练习 Multipliers
← 上一题 下一题 →

A10259 | Multipliers

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

题目描述

Ayrat has number $n$ , represented as it's prime factorization $p_{i}$ of size $m$ , i.e. $n=p_{1}·p_{2}·...·p_{m}$ . Ayrat got secret information that that the product of all divisors of $n$ taken modulo $10^{9}+7$ is the password to the secret data base. Now he wants to calculate this value.

输入格式

The first line of the input contains a single integer $m$ ( $1<=m<=200000$ ) — the number of primes in factorization of $n$ .

The second line contains $m$ primes numbers $p_{i}$ ( $2<=p_{i}<=200000$ ).

输出格式

Print one integer — the product of all divisors of $n$ modulo $10^{9}+7$ .

输入输出样例

输入 #1
2
2 3
输出 #1
36
输入 #2
3
2 3 2
输出 #2
1728
C++ 编辑器
输入
输出