Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
98143 | CSYZxiehuaiying | 早凉的程序2 | C++ | 解答错误 | 10 | 177 MS | 15892 KB | 412 | 2023-08-14 12:22:01 |
#include<bits/stdc++.h> #define int long long using namespace std; const int N=1e6+5; int n,m,p,a[N],s[N]; bool fl; signed main(){ ios::sync_with_stdio(0); cin.tie(0),cout.tie(0); cin>>n>>m>>p; for(int i=1; i<=n; ++i){ cin>>a[i],s[i]=s[i-1]+a[i]; if(a[i]>p)fl=1; }int l,r,res; while(m--){ cin>>l>>r,res=s[r]-s[l-1]; if(fl)res-=p*n;else res%=p; cout<<res<<'\n'; } return 0; }