RoAlgo Weekly Contest #0 | sumsecv

This was the problem page during the contest. Access the current page here.
Time limit: 1s Memory limit: 64MB Input: Output:

Task

You are given an array with nn natural number elements, indexed from 11 to nn, and mm pairs of indices (i,j)(i, j), with 1i<jn1 \leq i < j \leq n. For each pair (i,j)(i, j), determine the sum of the elements in the subarray determined by ii and jj.

Input data

The first line will contain the numbers nn and mm, and the second line will contain the nn elements of the vector. The next mm lines each contain a pair of indices (i,j)(i, j).

Output data

The output will contain the mm determined sums, each on another line.

Constraints and clarifications

  • 1n,m1001 \leq n, m \leq 100;
  • the elements of the vector will be less than 10001000.

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

Log in or sign up to be able to send submissions!