제출 #640334

#제출 시각아이디문제언어결과실행 시간메모리
640334maks007Addk (eJOI21_addk)C++14
92 / 100
1470 ms3068 KiB
#include "bits/stdc++.h"
 
// #define int long long
 
signed main () {
	int n, k;
	scanf("%d%d", &n, &k);
	int a[n];
	for(int i = 0; i < n; i ++) scanf("%d", &a[i]);
	long long pref[n];
	pref[0] = a[0];
	for(int i = 1; i < n; i ++) pref[i] = pref[i - 1] + a[i] * 1LL;
	int q;
	scanf("%d", &q);
	while(q --) {
		int type;
		scanf("%d", &type);
		if(type == 1) {
			int kk = k, x;
			while(kk --) scanf("%d", &x);
			continue;
		}
		int l, r, m;
		scanf("%d%d%d", &l, &r, &m);
		l --, r--;
		int cnt = std::min((r-l+1)-m + 1, m);
		long long ans = 0;
		while(cnt --) {
			ans += pref[r] - (!l ? 0: pref[l - 1]);
			r --, l ++;
		}
		printf("%lld\n", ans);
		
	}
	return 0;
}

컴파일 시 표준 에러 (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("%d%d", &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("%d", &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("%d", &q);
      |  ~~~~~^~~~~~~~~~
Main.cpp:17:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   17 |   scanf("%d", &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("%d", &x);
      |                 ~~~~~^~~~~~~~~~
Main.cpp:24:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   24 |   scanf("%d%d%d", &l, &r, &m);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...