CF859G.Circle of Numbers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

nn evenly spaced points have been marked around the edge of a circle. There is a number written at each point. You choose a positive real number kk . Then you may repeatedly select a set of 22 or more points which are evenly spaced, and either increase all numbers at points in the set by kk or decrease all numbers at points in the set by kk . You would like to eventually end up with all numbers equal to 00 . Is it possible?

A set of 22 points is considered evenly spaced if they are diametrically opposed, and a set of 33 or more points is considered evenly spaced if they form a regular polygon.

输入格式

The first line of input contains an integer nn ( 3<=n<=1000003<=n<=100000 ), the number of points along the circle.

The following line contains a string ss with exactly nn digits, indicating the numbers initially present at each of the points, in clockwise order.

输出格式

Print "YES" (without quotes) if there is some sequence of operations that results in all numbers being 00 , otherwise "NO" (without quotes).

You can print each letter in any case (upper or lower).

输入输出样例

  • 输入#1

    30
    000100000100000110000000001100
    

    输出#1

    YES
    
  • 输入#2

    6
    314159
    

    输出#2

    NO
    

说明/提示

If we label the points from 11 to nn , then for the first test case we can set k=1k=1 . Then we increase the numbers at points 77 and 2222 by 11 , then decrease the numbers at points 77 , 1717 , and 2727 by 11 , then decrease the numbers at points 44 , 1010 , 1616 , 2222 , and 2828 by 11 .

首页