CF96A.Football

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If there are at least 77 players of some team standing one after another, then the situation is considered dangerous. For example, the situation 0010011011111110100100110111111101 is dangerous and 1111011101110111110111011101 is not. You are given the current situation. Determine whether it is dangerous or not.

输入格式

The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100100 characters. There's at least one player from each team present on the field.

输出格式

Print "YES" if the situation is dangerous. Otherwise, print "NO".

输入输出样例

  • 输入#1

    001001
    

    输出#1

    NO
    
  • 输入#2

    1000000001
    

    输出#2

    YES
    
首页