CF906D.Power Tower

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Priests of the Quetzalcoatl cult want to build a tower to represent a power of their god. Tower is usually made of power-charged rocks. It is built with the help of rare magic by levitating the current top of tower and adding rocks at its bottom. If top, which is built from k1k-1 rocks, possesses power pp and we want to add the rock charged with power wkw_{k} then value of power of a new tower will be wkp{w_{k}}^{p} .

Rocks are added from the last to the first. That is for sequence w1,...,wmw_{1},...,w_{m} value of power will be

After tower is built, its power may be extremely large. But still priests want to get some information about it, namely they want to know a number called cumulative power which is the true value of power taken modulo mm . Priests have nn rocks numbered from 11 to nn . They ask you to calculate which value of cumulative power will the tower possess if they will build it from rocks numbered l,l+1,...,rl,l+1,...,r .

输入格式

First line of input contains two integers nn ( 1<=n<=1051<=n<=10^{5} ) and mm ( 1<=m<=1091<=m<=10^{9} ).

Second line of input contains nn integers wkw_{k} ( 1<=wk<=1091<=w_{k}<=10^{9} ) which is the power of rocks that priests have.

Third line of input contains single integer qq ( 1<=q<=1051<=q<=10^{5} ) which is amount of queries from priests to you.

kthk^{th} of next qq lines contains two integers lkl_{k} and rkr_{k} ( 1<=lk<=rk<=n1<=l_{k}<=r_{k}<=n ).

输出格式

Output qq integers. kk -th of them must be the amount of cumulative power the tower will have if is built from rocks lk,lk+1,...,rkl_{k},l_{k}+1,...,r_{k} .

输入输出样例

  • 输入#1

    6 1000000000
    1 2 2 3 3 3
    8
    1 1
    1 6
    2 2
    2 3
    2 4
    4 4
    4 5
    4 6
    

    输出#1

    1
    1
    2
    4
    256
    3
    27
    597484987
    

说明/提示

327=76255974849873^{27}=7625597484987

首页