Submission #1071421

# Submission time Handle Problem Language Result Execution time Memory
1071421 2024-08-23T07:16:44 Z vjudge1 Addk (eJOI21_addk) C++
0 / 100
124 ms 5204 KB
// Balgabaev Mansur
#include <bits/stdc++.h>

typedef long long ll;
typedef unsigned long long ull;
typedef double db;
#define pb push_back
#define int long long


using namespace std;

const int N=1e6+7;
const int MOD=1e9+7;
const int INF=1e18;

int binpow (int a, int n) {
	if (n == 0)
		return 1;
	if (n % 2 == 1)
		return binpow (a, n-1) * a;
	else {
		int b = binpow (a, n/2);
		return b * b;
	}
}

int a[N],pref[N];

void solve(){
	int n,k;
	cin >> n >> k;
	for(int i = 1 ; i <= n ; i++){
		cin >> a[i];
		pref[i]=pref[i-1]+a[i];
	}	
	int q;
	cin >> q;
	while(q--){
		int tp,l,r,x,ans=0;
		cin >> tp >> l >> r >> x;
		for(int i = l ; i+x-1 <= r ; i++){
			ans+=pref[i+x-1]-pref[i-1];
		}
		if(tp == 2){
			cout << ans << '\n';
		}
	}
}	
 
signed main() {
   // freopen("closing.in", "r", stdin);
   // freopen("closing.out", "w", stdout);
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int test = 1,cntx=1;
    //cin >> test;
    while (test--) {
	//cout << "Case " << 	cntx << ':' << '\n';
        solve();
        cntx++;
	}		
    return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 2396 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 55 ms 2688 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 124 ms 5204 KB Output isn't correct
2 Halted 0 ms 0 KB -