제출 #86370

#제출 시각아이디문제언어결과실행 시간메모리
86370MaHaMBa_25Telefoni (COCI17_telefoni)C++17
24 / 80
3 ms808 KiB
#include <bits/stdc++.h> #define GLHF ios_base::sync_with_stdio(0); cin.tie(), cout.tie(); #define GGWP return 0; #define ALTF4 exit(0) #define GCWS/*Good Contest, Well Solved*/ ALTF4 #define ull unsigned long long #define ll long long #define ld long double #define fxr1(x) for(int I = 0; I < x; ++I) #define fxr(x) for(int I = 0; I <= x; ++I) using namespace std; int n, d, ans, st, cnt; bool a[21]; int main() { GLHF cin >> n >> d; for ( int I = 0; I < n; ++I ) cin >> a[I]; for ( int I = 0; I < d; ++I ) if ( a[I] == 1 ) { st = I; break; } for ( int I = st; I < n; ++I ) { int cnt = 1; for ( int J = d; J > 0; --J ) { if ( a[J + I] == 1 ) I = J + I; else if ( J < 2 ) { ++ans; I = I + d; } } } for ( int I = 0; I < d; ++I ) { if ( a[I] == 0 ) ++cnt; } if ( a[n - 1] == 0 ) ++cnt; ans += cnt/d; cout << ans << endl; GGWP } //clang++ -v -std=c++11 finish fishing the fish.people

컴파일 시 표준 에러 (stderr) 메시지

telefoni.cpp: In function 'int main()':
telefoni.cpp:31:7: warning: unused variable 'cnt' [-Wunused-variable]
   int cnt = 1;
       ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...