#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n , k;
cin >> n >> k;
vector<int> A(n+5);
for(int i=1 ; i<=n ; i++){
cin >> A[i];
}
int q;
cin >> q;
for(int i=0 ; i<q ; i++){
int t;
cin >> t;
if(t == 2){
int l , r , m;
cin >> l >> r >> m;
long long sum = 0;
for(int j=l ; j<=r-m+1 ; j++){
for(int k=j ; k<=(j+3) ; k++){
sum += A[k];
}
}
cout << sum << '\n';
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
478 ms |
1064 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
771 ms |
1444 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |