답안 #600082

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
600082 2022-07-20T12:47:04 Z Jovan26 Addk (eJOI21_addk) C++14
0 / 100
285 ms 980 KB
#include<bits/stdc++.h>
using namespace std;
int main(){
	int n,k;
	cin>>n>>k;
	long long a[n];
	for(int i=0;i<n;i++){
		cin>>a[i];
	}
	int q;
	cin>>q;
	long long sums[q];
	int u = 0;
	if(k==1){
		for(int i=0;i<q;i++){
			int x;
			cin>>x;
			if(x==1){
				int y;
				cin>>y;
				continue;
			}
			else{
				long long  l,r,m;
				cin>>l>>r>>m;
				long long  s = 0;
				long long d = r-l+1;
				for(long long j=l-1; j<r; j++){
					long long p = j-l+2;
					if(p<m){
					s+=a[j]*p;
				}
				else if(d-p+1<m){
					s+=a[j]*(d-p+1);
				}
				else{
					s+=a[j]*m;
				}
				}
				sums[u] = s;
				u++;
			}
		}
	}
	for(int i=0;i<u-1;i++){
		cout<<sums[i]<<endl;
	}
	cout<<sums[u-1];
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 285 ms 844 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 13 ms 980 KB Output isn't correct
2 Halted 0 ms 0 KB -