记录编号 549460 评测结果 AAAAAAAAAA
题目名称 求和问题 最终得分 100
用户昵称 Gravatar夜莺 是否通过 通过
代码语言 C++ 运行时间 0.492 s
提交时间 2020-02-12 10:21:32 内存使用 4.55 MiB
显示代码纯文本
#include<cstdio>
using namespace std;
typedef long long LL;
LL n,m;
LL a[10001],plus[10001];
int main(){
	freopen("sum.in","r",stdin);
	freopen("sum.out","w",stdout); 
	scanf("%lld",&n);
	for(LL i=1;i<=n;i++){
		scanf("%lld",&a[i]);
		plus[i]=plus[i-1]+a[i];
	}
	scanf("%lld",&m);
	for(int i=1;i<=m;i++){
		LL x,y;
		scanf("%lld%lld",&x,&y);
		printf("%lld\n",plus[y]-plus[x-1]);
	}
	return 0;
}