首页 > 移动平台 > 详细

URAL 1493. One Step from Happiness

时间:2015-03-09 19:11:15      阅读:312      评论:0      收藏:0      [点我收藏+]

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;
}




URAL 1493. One Step from Happiness

原文:http://blog.csdn.net/u013446688/article/details/44157353

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!