Time limit: 1s
Memory limit: 64MB
Input:
Output:
Task
You are given an array with natural number elements, indexed from to , and pairs of indices , with . For each pair , determine the sum of the elements in the subarray determined by and .
Input data
The first line will contain the numbers and , and the second line will contain the elements of the vector. The next lines each contain a pair of indices .
Output data
The output will contain the determined sums, each on another line.
Constraints and clarifications
- ;
- the elements of the vector will be less than .
Example 1
stdin
10 3
5 5 1 3 6 4 1 2 10 6
5 8
2 6
6 10
stdout
13
19
23