Codeforces Round #512 (Div. 2, based on Technocup 2019 Elimination Round 1).C. Vasya and Golden Tick

C. Vasya and Golden Ticket

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Recently Vasya found a golden ticket — a sequence which consists of nn digits a1a2…ana1a2…an. Vasya considers a ticket to be lucky if it can be divided into two or more non-intersecting segments with equal sums. For example, ticket 350178350178 is lucky since it can be divided into three segments 350350, 1717 and 88: 3+5+0=1+7=83+5+0=1+7=8. Note that each digit of sequence should belong to exactly one segment.

Help Vasya! Tell him if the golden ticket he found is lucky or not.

Input

The first line contains one integer nn (2≤n≤1002≤n≤100) — the number of digits in the ticket.

The second line contains nn digits a1a2…ana1a2…an (0≤ai≤90≤ai≤9) — the golden ticket. Digits are printed without spaces.

Output

If the golden ticket is lucky then print "YES", otherwise print "NO" (both case insensitive).

Examples

input

Copy

5
73452

output

Copy

YES

input

Copy

4
1248

output

Copy

NO

Note

In the first example the ticket can be divided into 77, 3434 and 5252: 7=3+4=5+27=3+4=5+2.

In the second example it is impossible to divide ticket into segments with equal sum.

#include<bits/stdc++.h>
using namespace std;
#define maxn 110
#define ll long long
#define M(a) memset(a,0,sizeof(a))

int main()
{
    int t,n,d;
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    while(cin>>n)
    {
        char b[maxn];
        int a[maxn],sum=0,w=0;
        for(int i=0;i<n;i++){
            cin>>b[i];
            a[i]=b[i]-'0';
            sum+=a[i];
            if(a[i]==0) w++;
        }
        if(w==n) cout<<"YES"<<endl;
        else {
            int f=0;
            for(int i=1;i<=sum/2;i++){
                if(sum%i==0){
                    int c=0;
                    for(int j=0;j<n;j++){
                        c+=a[j];
                        if(c==i){
                        if(a[j+1]!=0) c=0;
                        if(j==n-1){
                            f=1;
                            break;
                        } 
                        }else if(c>i){
                            break;
                        }
                    }
                    if(f==1) break;
                    else continue;
                }
        }
        if(f==1) cout<<"YES"<<endl;
        else cout<<"NO"<<endl;
        }
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值