# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
145492 | charlies_moo | Rasvjeta (COCI17_rasvjeta) | C++98 | 1086 ms | 380 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
using namespace std;
int main(){
int n,k,l,i,j;
int a[4000]={0};
cin >>n>>k>>l;
int x;
for(i=0;i<k;i++){
cin >>x;
for(j=x-l;j<=x+l;j++){
a[j]=1;
}
}
int s=0;
while(i<n){
if(a[i]==0){
for(j=i;j<=i+2*l;j++){
a[j]=1;
}
s++;
i=j;
}
}
cout <<s;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |