Submission #640094

#TimeUsernameProblemLanguageResultExecution timeMemory
640094maks007Addk (eJOI21_addk)C++14
92 / 100
1122 ms5976 KiB
#include "bits/stdc++.h"

#define int long long

signed main () {
	int n, k;
	scanf("%lld%lld", &n, &k);
	int a[n];
	for(int i = 0; i < n; i ++) scanf("%lld", &a[i]);
	int pref[n];
	pref[0] = a[0];
	for(int i = 1; i < n; i ++) pref[i] = pref[i - 1] + a[i];
	int q;
	scanf("%lld", &q);
	while(q --) {
		int type;
		scanf("%lld", &type);
		if(type == 1) {
			int kk = k, x;
			while(kk --) scanf("%lld", &x);
			continue;
		}
		int l, r, m;
		scanf("%lld%lld%lld", &l, &r, &m);
		l --, r--;
		int cnt = std::min((r-l+1)-m + 1, m);
		int ans = 0;
		while(cnt --) {
			ans += pref[r] - (!l ? 0: pref[l - 1]);
			r --, l ++;
		}
		printf("%lld\n", ans);
		
	}
	return 0;
}

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:7:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 |  scanf("%lld%lld", &n, &k);
      |  ~~~~~^~~~~~~~~~~~~~~~~~~~
Main.cpp:9:35: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    9 |  for(int i = 0; i < n; i ++) scanf("%lld", &a[i]);
      |                              ~~~~~^~~~~~~~~~~~~~~
Main.cpp:14:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 |  scanf("%lld", &q);
      |  ~~~~~^~~~~~~~~~~~
Main.cpp:17:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   17 |   scanf("%lld", &type);
      |   ~~~~~^~~~~~~~~~~~~~~
Main.cpp:20:22: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   20 |    while(kk --) scanf("%lld", &x);
      |                 ~~~~~^~~~~~~~~~~~
Main.cpp:24:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   24 |   scanf("%lld%lld%lld", &l, &r, &m);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...