URAL 1493. One Step from Happiness

本博客提供了一个简单的算法,用于判断六位数字火车票号的前三个数字之和与后三个数字之和是否相差一。通过直接暴力判断实现。

1493. One Step from Happiness

Time limit: 1.0 second
Memory limit: 64 MB
Vova bought a ticket in a tram of the 13th route and counted the sums of the first three and the last three digits of the ticket's number (the number has six digits). It turned out that the sums differed by one exactly. "I'm one step from happiness," Vova thought, "either the previous or the next ticket is lucky." Is he right?

Input

The input contains the number of the ticket. The number consists of six digits, some of which can be zeros. It is guaranteed that Vova counted correctly, i.e., that the sum of the first three digits differs from the sum of the last three digits by one exactly.

Output

Output "Yes" if Vova is right and "No" otherwise.

Samples

input output
715068
Yes
445219
No
012200
Yes

Notes

All tram tickets have exactly six digits. A ticket is considered lucky if the sum of its first three digits equals the sum of its last three digits.



题意:判断六位数字的的前,后三位数字之和是否相等。

解析:直接暴力判断即可。



AC代码:

#include <cstdio>

int sum(int n){
    int ans = 0;
    while(n){
        ans += n % 10;
        n /= 10;
    }
    return ans;
}

bool check(int n){
    int a = n % 1000, b = n / 1000;
    return sum(a) == sum(b);
}

int main(){
    #ifdef sxk
        freopen("in.txt", "r", stdin);
    #endif //sxk

    int n;
    while(scanf("%d", &n)==1){
        puts(check(n) || check(n-1) || check(n+1) ? "Yes" : "No");      //前一个和后一个也可以
    }
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值