Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
98249 | CSYZ_GanRZ | 早凉的程序2 | C++ | 解答错误 | 20 | 900 MS | 1812 KB | 365 | 2023-08-14 13:09:17 |
#include<bits/stdc++.h> #define N 100010 #define int long long using namespace std; int n,m,p,l,r,flg; int a[N],s[N]; signed 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; }