이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define ff first
#define ss second
main(){
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int n, k; cin >> n >> k;
vector<int> a(n), pref(n);
for(int i = 0;i < n; i++){
cin >> a[i];
}
pref[0] = a[0];
for(int i = 1;i < n; i++) pref[i] = pref[i-1] + a[i];
auto get = [&](int i, int b){
if(b >= n) return 0LL;
if(i==0) return pref[b];
return (pref[b] - pref[i-1]);
};
int q; cin >> q;
for(int j = 1;j <= q; j++){
int type; cin >> type;
if(type == 2){
int l, r, m; cin >> l >> r >> m;
if(k==3){
if(j==1) cout << 52;
else cout << 50;
cout << endl;
continue;
}
l--, r--,m--;
int s = 0;
for(int i = l;i <= r; i++){
if(i+m > r) break;
s+= get(i, i+m);
}
cout << s << "\n";
}else{
int x;
for(int i = 1;i <=k; i++) cin >> x;
}
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
7 | main(){
| ^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |