记录编号 | 131068 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 求和问题 | 最终得分 | 100 | ||
用户昵称 | 明天 | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.869 s | ||
提交时间 | 2014-10-23 20:27:33 | 内存使用 | 0.43 MiB | ||
#include <iostream> #include <cstdio> using namespace std; int n,m,l,r,a[10000+1]; long long tot[10000+1]; int main() { freopen("sum.in","r",stdin); freopen("sum.out","w",stdout); scanf("%d",&n); for (int i=1; i<=n; i++) { scanf("%d",&a[i]); tot[i]=tot[i-1]+a[i]; } scanf("%d",&m); for (int i=1; i<=m; i++) { scanf("%d%d",&l,&r); cout<<tot[r]-tot[l-1]; } return 0; }