A. Football 水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Football 水题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/96/A
#include<bits/stdc++.h>
using namespace std;
bool flag=false;
int main(void)
{
string s; cin>>s;
int cnt=1;
for(int i=0;i<s.size();i++)
{
if(i&&s[i-1]==s[i]) cnt++;
else cnt=1;
if(cnt>=7) flag=true;
}
if(flag) puts("YES");
else puts("NO");
return 0;
}
以上是关于A. Football 水题的主要内容,如果未能解决你的问题,请参考以下文章