#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 |
1 |
Execution timed out |
1058 ms |
376 KB |
Time limit exceeded |
2 |
Incorrect |
2 ms |
372 KB |
Output isn't correct |
3 |
Incorrect |
3 ms |
380 KB |
Output isn't correct |
4 |
Execution timed out |
1082 ms |
376 KB |
Time limit exceeded |
5 |
Execution timed out |
1086 ms |
376 KB |
Time limit exceeded |
6 |
Execution timed out |
1067 ms |
376 KB |
Time limit exceeded |
7 |
Execution timed out |
1080 ms |
376 KB |
Time limit exceeded |
8 |
Correct |
2 ms |
380 KB |
Output is correct |
9 |
Correct |
2 ms |
256 KB |
Output is correct |
10 |
Execution timed out |
1077 ms |
256 KB |
Time limit exceeded |