测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10548. PLEASE

编程题 普及/提高-

题目描述

As we all know Barney's job is "PLEASE" and he has not much to do at work. That's why he started playing "cups and key". In this game there are three identical cups arranged in a line from left to right. Initially key to Barney's heart is under the middle cup.

![](/uploads/acgo/image/84e8de148ec0f23b_9a85a5d97723.jpeg)Then at one turn Barney swaps the cup in the middle with any of other two cups randomly (he choses each with equal probability), so the chosen cup becomes the middle one. Game lasts $n$ turns and Barney independently choses a cup to swap with the middle one within each turn, and the key always remains in the cup it was at the start.

After $n$ -th turn Barney asks a girl to guess which cup contains the key. The girl points to the middle one but Barney was distracted while making turns and doesn't know if the key is under the middle cup. That's why he asked you to tell him the probability that girl guessed right.

Number $n$ of game turns can be extremely large, that's why Barney did not give it to you. Instead he gave you an array $a_{1},a_{2},...,a_{k}$ such that

![](/uploads/acgo/image/f135857e91efb16c_3d49cb951e3f.jpeg)in other words, $n$ is multiplication of all elements of the given array.

Because of precision difficulties, Barney asked you to tell him the answer as an irreducible fraction. In other words you need to find it as a fraction $p/q$ such that ![](/uploads/luogu/CF696C/51ec39c66543471c5d07d25bd208f63da92bf471_f7eb0de562af.png), where ![](/uploads/acgo/image/f0d4a11cddbe47eb_0fb4d56b7f42.jpeg) is the greatest common divisor. Since $p$ and $q$ can be extremely large, you only need to find the remainders of dividing each of them by $10^{9}+7$ .

Please note that we want ![](/uploads/acgo/image/f0d4a11cddbe47eb_0fb4d56b7f42.jpeg) of $p$ and $q$ to be $1$ , not ![](/uploads/acgo/image/f0d4a11cddbe47eb_0fb4d56b7f42.jpeg) of their remainders after dividing by $10^{9}+7$ .

输入格式

The first line of input contains a single integer $k$ ( $1<=k<=10^{5}$ ) — the number of elements in array Barney gave you.

The second line contains $k$ integers $a_{1},a_{2},...,a_{k}$ ( $1<=a_{i}<=10^{18}$ ) — the elements of the array.

输出格式

In the only line of output print a single string $x/y$ where $x$ is the remainder of dividing $p$ by $10^{9}+7$ and $y$ is the remainder of dividing $q$ by $10^{9}+7$ .

输入输出样例

输入 #1
1
2
输出 #1
1/2
输入 #2
3
1 1 1
输出 #2
0/1
上一题 去做题 下一题