CF36A.Extra-terrestrial Intelligence

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

注意这题要加上这个:

freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);

输入格式

Recently Vasya got interested in finding extra-terrestrial intelligence. He made a simple extra-terrestrial signals’ receiver and was keeping a record of the signals for nn days in a row. Each of those nn days Vasya wrote a 1 in his notebook if he had received a signal that day and a 0 if he hadn’t. Vasya thinks that he has found extra-terrestrial intelligence if there is a system in the way the signals has been received, i.e. if all the intervals between successive signals are equal. Otherwise, Vasya thinks that the signals were sent by some stupid aliens no one cares about. Help Vasya to deduce from the information given by the receiver if he has found extra-terrestrial intelligence or not.

输出格式

The first line contains integer nn ( 3<=n<=1003<=n<=100 ) — amount of days during which Vasya checked if there were any signals. The second line contains nn characters 1 or 0 — the record Vasya kept each of those nn days. It’s guaranteed that the given record sequence contains at least three 1s.

输入输出样例

  • 输入#1

    8
    00111000
    

    输出#1

    YES
    
  • 输入#2

    7
    1001011
    

    输出#2

    NO
    
  • 输入#3

    7
    1010100
    

    输出#3

    YES
    
首页