# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
854257 | vjudge1 | Telefoni (COCI17_telefoni) | C++17 | 34 ms | 432 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 <bits/stdc++.h>
#define ll long long
#define S second
#define F first
#define PB push_back
#define PF push_front
using namespace std;
signed main()
{
int n , m;
cin >> n >> m;
int res = 0;
int cnt = 1;
for(int i = 0; i < n; i++){
int x;
cin >> x;
if( x == 0 && cnt < m){
cnt++;
}
else if(x == 0){
res++;
cnt = 1;
}
}
cout<< res;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |