记录编号 184104 评测结果 AAAAAAAAAA
题目名称 求和问题 最终得分 100
用户昵称 GravatarGod_is_dead 是否通过 通过
代码语言 C++ 运行时间 1.218 s
提交时间 2015-09-02 11:33:52 内存使用 0.97 MiB
显示代码纯文本
#include <iostream>
#include <fstream>
#include <cstdlib>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;

ifstream fin("sum.in");
ofstream fout("sum.out");

int cnt_num=0;
long long int qzhuihe[100005]={0}; 
int cnt_cha=0;

int main(int argc, char *argv[]) {
 fin>>cnt_num;
 for(int x=1;x<=cnt_num;x++){
  int a;
  fin>>a;
  qzhuihe[x]=a+qzhuihe[x-1]; 	
 }
 fin>>cnt_cha;
 for(int x=1;x<=cnt_cha;x++){
  int ks,js;
  fin>>ks>>js;
  long long ans=qzhuihe[js]-qzhuihe[ks-1];	
  fout<<ans;
 }
	return 0;
}