1. 请同学们认真做题,本系统提供查重服务。
  2. 账号或者题目有问题,可以联系任课老师或者发邮件至real251024@163.com
  3. vscode下载地址:https://code.visualstudio.com/
  4. codeblocks下载地址:http://vlab.csu.edu.cn/oj/download/codeblocks-setup.exe
  5. DevC++下载地址:http://vlab.csu.edu.cn/oj/download/DevC_Setup.exe
Problem1220--赚钱

1220: 赚钱

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

hx073269过的十分贫穷,每天都想着今后能赚多少钱,给你n个数字,其中ai表示hx073269i天赚的钱。给你T组询问,每次询问有LR两个数字,求第L天到第Rhx073269赚的钱的总和。

Input

首先输入两个整数n,T(1<=n,T<=10^5)
接下来输入n个数,其中ai(ai<=10^9)表示hx073269i天赚的钱
接下来有T组询问,每次询问输入L,R(1<=L,R<=10^5)两个数字

Output

对于每次询问,求第L天到第R天hx073269赚的钱的总和
输出一个整数表示答案

Sample Input Copy

5 2
1 1 1 1 1
1 2
1 5

Sample Output Copy

2
5

Source/Category