记录编号 |
390249 |
评测结果 |
AAAAAAAAAA |
题目名称 |
求和问题 |
最终得分 |
100 |
用户昵称 |
fate1 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.533 s |
提交时间 |
2017-04-02 12:44:11 |
内存使用 |
0.39 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
long long f[10010]={0};
using namespace std;
int main()
{
freopen("sum.in","r",stdin);
freopen("sum.out","w",stdout);
int a,m;
scanf("%d",&a);
for(long long i=1;i<=a;i++)
{
scanf("%lld",&f[i]);
f[i]+=f[i-1];
}
scanf("%d",&m);
for(int i=1;i<=m;i++)
{
int wc,nm;
scanf("%d %d",&wc,&nm);
printf("%lld\n",f[nm]-f[wc-1]);
}
return 0;
}