#include<bits/stdc++.h>
using namespace std;
int main(){
long long n,k;
cin>>n>>k;
long long a[n+1];
for(long long i=1; i<=n; i++){
cin>>a[i];
}
long long q;
cin>>q;
while(q--){
long long x;
cin>>x;
if(x==1){
continue;
}
long long l,r,m;
cin>>l>>r>>m;
long long s=0;
for(long long j=l; j<=r; j++){
long long l1,r2;
l1=max(j-m+1, l);
r2=min(j+m-1, r);
s+=a[j]*(r2-l1-m+2);
}
cout<<s<<endl;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
91 ms |
656 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
738 ms |
1212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |