#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(0);
int n,k;
cin >> n >> k;
vector <long long> v(n+1);
vector <long long> pre(n+1);
pre[0] = 0;
for(int i = 1;i <= n;i++){
cin >> v[i];
pre[i] = pre[i-1] + v[i];
}
int q;
cin >> q;
for(int i = 0;i < q;i++){
int qu,l,r,m;
cin >> qu >> l >> r >> m;
if(qu == 2){
int rr = l + m-1;
int ll = l-1;
long long sum = 0;
for(int j = 0; j < (r-l)+2-m;j++){
sum += pre[rr] - pre[ll];
ll++;
rr++;
}
cout << sum << "\n";
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
452 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
53 ms |
1424 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
108 ms |
2796 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |