Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
98220 | CSYZ_GanRZ | 早凉的程序2 | C++ | 解答错误 | 0 | 896 MS | 1036 KB | 339 | 2023-08-14 12:29:12 |
#include<bits/stdc++.h> #define N 100010 using namespace std; int n,m,p,l,r,flg; int a[N],s[N]; int main(){ cin>>n>>m>>p; for(int i=1;i<=n;i++) cin>>a[i],s[i]=s[i-1]+a[i]; if(a[1]>=p) flg=1; while(m--){ cin>>l>>r; int ans=s[r]-s[l-1]; if(flg) cout<<ans-p*(r-l+1)<<endl; else cout<<ans%p<<endl; } return 0; }