比赛 十一中校庆欢乐赛 评测结果 AAAAAAAAAA
题目名称 求和问题 最终得分 100
用户昵称 清羽 运行时间 4.146 s
代码语言 C++ 内存使用 0.39 MiB
提交时间 2014-10-23 19:40:55
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<cstring>
#include<algorithm>
using namespace std;

const int maxn=10050;

long long n,s[maxn],m,l,r;

void init()
{
	s[0]=0;
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		int x;
		scanf("%d",&x);
		s[i]=s[i-1]+x;
	}
}

void work()
{
	scanf("%d",&m);
	for(int i=0;i<m;i++){
		int x,y;
		scanf("%d%d",&x,&y);
		cout<<s[y]-s[x-1]<<endl;
	}
}

int main()
{
	freopen("sum.in","r",stdin);
	freopen("sum.out","w",stdout);
	init();
	work();
	fclose(stdin);
	fclose(stdout);
	return 0;
}