【水模拟】#67 A. Life Without Zeros

A. Life Without Zeros
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Can you imagine our life if we removed all zeros from it? For sure we will have many problems.

In this problem we will have a simple example if we removed all zeros from our life, it's the addition operation. Let's assume you are given this equation a + b = c, where a and b are positive integers, and c is the sum of a and b. Now let's remove all zeros from this equation. Will the equation remain correct after removing all zeros?

For example if the equation is 101 + 102 = 203, if we removed all zeros it will be 11 + 12 = 23 which is still a correct equation.

But if the equation is 105 + 106 = 211, if we removed all zeros it will be 15 + 16 = 211 which is not a correct equation.

Input

The input will consist of two lines, the first line will contain the integer a, and the second line will contain the integer b which are in the equation as described above (1 ≤ a, b ≤ 109). There won't be any leading zeros in both. The value of c should be calculated as c = a + b.

Output

The output will be just one line, you should print "YES" if the equation will remain correct after removing all zeros, and print "NO" otherwise.

Sample test(s)
input
101
102
output
YES
input
105
106
output
NO



这道题呀,题意是说给你两个数字(然后你自己算出他们的和),如果把加数以及他们的和里面的零都去掉,这个等式是否还成立

那么就直接把去掉零之后的数字都求出来,计算一下看是不是成立就好啦~ 

咱们模拟一下就好~ 需要注意一下这个弃掉0的函数怎么写就好^_^

int del0(int x)
{
	int ret=0,tmp=x,time=1; //tmp是这个数字,ret是用来存储去掉0的返回值 
	while(tmp)
	{
		int digit=tmp%10;	//获得当前最低位的数字 
		if(digit) ret+=(time)*digit,time*=10;	//如果不是0就加进去,是0的话无视掉 
		tmp/=10;
	}
	return ret;
}


Code:

#include <cstdio>
#include <string>
#include <cstring> 
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;

int del0(int x)
{
	int ret=0,tmp=x,time=1;
	while(tmp)
	{
		int digit=tmp%10;
		if(digit) ret+=(time)*digit,time*=10;
		tmp/=10;
	}
	return ret;
}

int main()
{
	int a,b;
	cin>>a>>b;
	int c=a+b;
	//cout<< del0(c)<<": "<<del0(a)<<": "<<del0(b)<<endl;
	if(del0(c)==del0(a)+del0(b))cout<<"YES"<<endl;
	else cout<<"NO"<<endl;
	return 0;
} 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

糖果天王

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

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

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

打赏作者

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

抵扣说明:

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

余额充值