# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
145498 | charlies_moo | Rasvjeta (COCI17_rasvjeta) | C++98 | 3 ms | 380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
int main(){
int n,k,l,i,j;
int a[4000]={0};
cin >>n>>k>>l;
int x,t;
for(i=0;i<k;i++){
cin >>x;
if(x-l<0){
t=0;
}
else{
t=x-l;
}
for(j=t;j<=x+l;j++){
a[j]=1;
}
}
int s=0;
for(i=1;i<=n;i++){
if(a[i]==0){
for(j=i;j<=i+2*l;j++){
a[j]=1;
}
s++;
i=j-1;
}
}
cout <<s;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |