CF1172F.Nauuo and Bug

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Nauuo is a girl who loves coding.

One day she was solving a problem which requires to calculate a sum of some numbers modulo pp .

She wrote the following code and got the verdict "Wrong answer".

She soon discovered the bug — the ModAdd function only worked for numbers in the range [0,p)[0,p) , but the numbers in the problem may be out of the range. She was curious about the wrong function, so she wanted to know the result of it.

However, the original code worked too slow, so she asked you to help her.

You are given an array a1,a2,,ana_1,a_2,\ldots,a_n and a number pp . Nauuo will make mm queries, in each query, you are given ll and rr , and you have to calculate the results of Sum(a,l,r,p). You can see the definition of the Sum function in the pseudocode above.

Note that the integers won't overflow in the code above.

输入格式

The first line contains three integers nn , mm , pp ( 1n1061 \le n \le 10^6 , 1m21051 \le m \le 2 \cdot 10^5 , 1p1091 \le p \le 10^9 ) — the length of the given array, the number of queries and the modulus. Note that the modulus is used only in the ModAdd function.

The second line contains nn integers a1,a2,,ana_1,a_2,\ldots,a_n ( 109ai109-10^9\le a_i\le10^9 ) — the given array.

In the following mm lines, each line contains two integers ll , rr ( 1lrn1\le l\le r\le n ) — you have to calculate the result of Sum(a,l,r,p).

输出格式

The output contains mm integers to answer the queries in the given order.

输入输出样例

  • 输入#1

    4 5 6
    7 2 -3 17
    2 3
    1 3
    1 2
    2 4
    4 4
    

    输出#1

    -1
    0
    3
    10
    11
    
首页