Kitahara Haruki's Gift

									***Kitahara Haruki's Gift*** 

Kitahara Haruki has bought n apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends.

Each apple weights 100 grams or 200 grams. Of course Kitahara Haruki doesn’t want to offend any of his friend. Therefore the total weight of the apples given to Touma Kazusa must be equal to the total weight of the apples given to Ogiso Setsuna.

But unfortunately Kitahara Haruki doesn’t have a knife right now, so he cannot split any apple into some parts. Please, tell him: is it possible to divide all the apples in a fair way between his friends?

Input
The first line contains an integer n (1 ≤ n ≤ 100) — the number of apples. The second line contains n integers w1, w2, …, wn (wi = 100 or wi = 200), where wi is the weight of the i-th apple.

Output
In a single line print “YES” (without the quotes) if it is possible to divide all the apples between his friends. Otherwise print “NO” (without the quotes).

Examples
Input
3
100 200 100
Output
YES
Input
4
100 100 100 200
Output
NO
Note
In the first test sample Kitahara Haruki can give the first and the last apple to Ogiso Setsuna and the middle apple to Touma Kazusa.
题意:只有100克和200克的苹果,把n个苹果分给两个人,苹果不能切开,问能不能把这些苹果平均分给两个人,如果能打印YES,否则NO。
思路:如果100克的苹果为0,且200克的苹果个数只能是偶数才能平均分,否则不能,100克的苹果个数为奇数,也不能平均分,其他的情况能实现平均分。

#include"stdio.h"
int main()
{
	int n,a[105];
	while(~scanf("%d",&n))
	{
		int sum=0,num=0;
		for(int i=0;i<n;i++)
		{
			scanf("%d",&a[i]);
			if(a[i]==100)
			{
				sum++;
			}
			num++;
		}
		if(sum==0)
		{
			if(num%2==0)
			{
				printf("YES\n");
			}
			else
			{
				printf("NO\n");
			}
			continue;
		}
		else if(sum%2!=0)
		{
			printf("NO\n");
		}
		else
		{
			printf("YES\n");
		}
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值