# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
632000 | 2022-08-19T09:41:55 Z | Jovan26 | Addk (eJOI21_addk) | C++14 | 299 ms | 904 KB |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int k; cin>>k; int a[n]; for(int i=0;i<n;i++) cin>>a[i]; int q; cin>>q; bool p = false; vector<long long> v; for(int j=0;j<q;j++){ int x; cin>>x; if(x==1){ int y; cin>>y; continue; } int l,r,m; p = true; cin>>l>>r>>m; int ma = r-l+1-m+1; long long rez = 0; for(int i=l-1;i<l+ma-2;i++){ rez+=(i-l+2)*a[i]; } for(int i=r-1;i>r-ma;i--){ rez+=(r-i)*a[i]; } for(int i=l+ma-2;i<=r-ma;i++){ rez+=a[i]*min(ma,m); } v.push_back(rez); } if(p){ for(int i=0;i<v.size()-1;i++) cout<<v[i]<<endl; cout<<v[v.size()-1]; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 299 ms | 904 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 17 ms | 852 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |