CF359C.Prime Number

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Simon has a prime number xx and an array of non-negative integers a1,a2,...,ana_{1},a_{2},...,a_{n} .

Simon loves fractions very much. Today he wrote out number on a piece of paper. After Simon led all fractions to a common denominator and summed them up, he got a fraction: , where number tt equals xa1+a2+...+anx^{a_{1}+a_{2}+...+a_{n}} . Now Simon wants to reduce the resulting fraction.

Help him, find the greatest common divisor of numbers ss and tt . As GCD can be rather large, print it as a remainder after dividing it by number 10000000071000000007 ( 109+710^{9}+7 ).

输入格式

The first line contains two positive integers nn and xx ( 1<=n<=1051<=n<=10^{5} , 2<=x<=1092<=x<=10^{9} ) — the size of the array and the prime number.

The second line contains nn space-separated integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 0<=a1<=a2<=...<=an<=1090<=a_{1}<=a_{2}<=...<=a_{n}<=10^{9} ).

输出格式

Print a single number — the answer to the problem modulo 10000000071000000007 ( 109+710^{9}+7 ).

输入输出样例

  • 输入#1

    2 2
    2 2
    

    输出#1

    8
    
  • 输入#2

    3 3
    1 2 3
    

    输出#2

    27
    
  • 输入#3

    2 2
    29 29
    

    输出#3

    73741817
    
  • 输入#4

    4 5
    0 0 0 0
    

    输出#4

    1
    

说明/提示

In the first sample . Thus, the answer to the problem is 88 .

In the second sample, . The answer to the problem is 2727 , as 351=1327351=13·27 , 729=2727729=27·27 .

In the third sample the answer to the problem is 1073741824 mod 1000000007=737418171073741824 mod 1000000007=73741817 .

In the fourth sample . Thus, the answer to the problem is 11 .

首页