#include #include using namespace std; using namespace atcoder; using ll=long long; using ld=long double; ld pie=3.141592653589793; ll inf=14449999; ll mod=998244353; int main(){ string s; cin >> s; string t="yukicoder"; ll ans=0; ll x=0; for (ll i = 0; i < s.size(); i++) { bool ok=true; for (ll j = 0; j < t.size(); j++) { if (i+j>=s.size()) { ok=false; } if (s[i+j]!=t[j]) { ok=false; break; } } if (ok) { x+=1; ans=max(ans,x); i+=8; }else{ x=0; } } cout << ans << endl; }