ACM ICPC

ACM ICPC

Problem

In a small but very proud high school it was decided to win ACM ICPC. This goal requires to compose as many teams of three as possible, but since there were only 6 students who wished to participate, the decision was to build exactly two teams.

After practice competition, participant number i got a score of ai. Team score is defined as sum of scores of its participants. High school management is interested if it’s possible to build two teams with equal scores. Your task is to answer that question.

Input

The single line contains six integers a 1 ,   . . . ,   a 6 a_1, ..., a_6 a1, ...,a6 ( 0   ≤   a i   ≤   1000 ) (0 ≤ a_i ≤ 1000) (0 ai 1000) — scores of the participants

Output

Print “YES” (quotes for clarity), if it is possible to build teams with equal score, and “NO” otherwise.

You can print each character either upper- or lowercase (“YeS” and “yes” are valid when the answer is “YES”).

Examples

Input
1 3 2 1 2 1
Output
YES
Input
1 1 1 1 1 99
Output
NO

Note

In the first sample, first team can be composed of 1st, 2nd and 6th participant, second — of 3rd, 4th and 5th: team scores are 1 + 3 + 1 = 2 + 1 + 2 = 5.

In the second sample, score of participant number 6 is too high: his team score will be definitely greater.

Code

// #include <iostream>
// #include <algorithm>
// #include <cstring>
// #include <sstream>//整型转字符串
// #include <stack>//栈
// #include <deque>//堆/优先队列
// #include <queue>//队列
// #include <map>//映射
// #include <unordered_map>//哈希表
// #include <vector>//容器,存数组的数,表数组的长度
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
ll a[6];

int main()
{
    ll sum=0;
    for(ll i=0;i<6;i++)
    {
        cin>>a[i];
        sum+=a[i];
    }

    ll op=0;
    if(sum&1) cout<<"NO"<<endl;
    else
    {
        for(ll i=0;i<6;i++)
            for(ll j=i+1;j<6;j++)
                for(ll k=j+1;k<6;k++)
                {
                    if(a[i]+a[j]+a[k]==sum/2)
                    {
                        cout<<"YES"<<endl;
                        op=1;
                        return 0;
                    }
                }

        if(!op) cout<<"NO"<<endl;
    }
    
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Pretty Boy Fox

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值