답안 #643349

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
643349 2022-09-21T19:18:07 Z Ferid20072020 Addk (eJOI21_addk) C++17
0 / 100
771 ms 1444 KB
#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 -