# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1045109 | Nickpapadak | Addk (eJOI21_addk) | C++14 | 115 ms | 832 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const unsigned int MAXN = 1e+5 + 10;
int N, K, Q;
int A[MAXN], ps[MAXN];
int solveBF(){
int ans = 0;
int l,r,m;
scanf("%d%d%d",&l,&r,&m);
// for(int i = l; i <= l+m-1;++i){
// ans += ps[l+m-1] - ps[i-1];
// // printf("%d %d: %d\n",i,i+m,ans);
// }
// ans += (ps[r-m] - ps[l+m-1])*m;
// for(int i = r-m+1; i <= r; ++i){11
// ans += ps[i] - ps[r-m];
// }
for(int i = l; i+m-1 <= r; ++i){
ans += ps[i+m-1]-ps[i-1];
}
return max(ans, 0);
}
// int scanBF(){
// int k;
// // scanf("%d",&k);
// return -1;
// }
// int BF(int typE){
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |