Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
51828 jdf_zhanglingkai 区间求和 C++ 解答错误 0 MS 260 KB 391 2024-09-26 16:53:05

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int a[100000],c[100000]; int main() { int n,t; cin>>n>>t; for(int i=1;i<=n;i++) { cin>>a[i]; } c[1]=a[1]; for(int i=2;i<=n;i++) { c[i]=c[i-1]+a[i]; } for(int i=1;i<=t;i++) { int l,r; cin>>l>>r; if(l==1) { cout<<c[r]-c[l-1]<<endl; } else { cout<<c[r]-c[l]<<endl; } } return 0; }


测评信息: