现在的位置: 首页 > 综合 > 正文

A. Lucky Ticket

2012年04月16日 ⁄ 综合 ⁄ 共 1565字 ⁄ 字号 评论关闭
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7.
For example, numbers 477444 are lucky and 517467 are
not.

Petya loves tickets very much. As we know, each ticket has a number that is a positive integer. Its length equals n (n is
always even). Petya calls a ticket lucky if the ticket's number is a lucky number and the sum of digits in the first half (the sum of the first n / 2 digits)
equals the sum of digits in the second half (the sum of the last n / 2 digits). Check if the given ticket is lucky.

Input

The first line contains an even integer n (2 ≤ n ≤ 50) —
the length of the ticket number that needs to be checked. The second line contains an integer whose length equals exactly n — the ticket
number. The number may contain leading zeros.

Output

On the first line print "YES" if the given ticket number is lucky. Otherwise, print "NO"
(without the quotes).

Sample test(s)
input
2
47
output
NO
input
4
4738
output
NO
input
4
4774
output
YES
Note

In the first sample the sum of digits in the first half does not equal the sum of digits in the second half (4 ≠ 7).

In the second sample the ticket number is not the lucky number.

解题说明:此题就是对字符串进行判断求和

#include<cstdio>
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;

int main()
{
	int n,i;
	int sum1,sum2;
	int flag;
	char a[51];
	scanf("%d",&n);
	scanf("%s",&a);
	sum1=0;
	sum2=0;
	flag=0;
	for(i=0;i<n/2;i++)
	{
		if(a[i]!='4'&&a[i]!='7')
		{
			flag=1;
		}
		sum1+=a[i]-'0';
	}
	for(i=n/2;i<n;i++)
	{
		if(a[i]!='4'&&a[i]!='7')
		{
			flag=1;
		}
		sum2+=a[i]-'0';
	}
	if(flag==1)
	{
		printf("NO\n");
	}
	else
	{
		if(sum1==sum2)
		{
			printf("YES\n");
		}
		else
		{
			printf("NO\n");
		}
	}

	return 0;
}

抱歉!评论已关闭.