Divisibility by Eight

Divisibility by Eight

Problem

You are given a non-negative integer n, its decimal representation consists of at most 100 digits and doesn’t contain leading zeroes.

Your task is to determine if it is possible in this case to remove some of the digits (possibly not remove any digit at all) so that the result contains at least one digit, forms a non-negative integer, doesn’t have leading zeroes and is divisible by 8. After the removing, it is forbidden to rearrange the digits.

If a solution exists, you should print it.

Input

The single line of the input contains a non-negative integer n. The representation of number n doesn’t contain any leading zeroes and its length doesn’t exceed 100 digits.

Output

Print “NO” (without quotes), if there is no such way to remove some digits from number n.

Otherwise, print “YES” in the first line and the resulting number after removing digits from number n in the second line. The printed number must be divisible by 8.

If there are multiple possible answers, you may print any of them.

Examples

Input
3454
Output
YES
344
Input
10
Output
YES
0
Input
111111
Output
NO

Code

// #include <iostream>
// #include <algorithm>
// #include <cstring>
// #include <sstream>//整型转字符串
// #include <stack>//栈
// #include <deque>//堆/优先队列
// #include <queue>//队列
// #include <map>//映射
// #include <unordered_map>//哈希表
// #include <vector>//容器,存数组的数,表数组的长度
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;

//数学结论:(eg:8*125=1000)只要尾部有三位数是8的倍数,那么这个数就能被8整除
int main()
{
    string s;
    cin>>s;

    //一位
    for(ll i=0;i<s.size();i++)
    {
        ll x=s[i]-'0';
        if(x%8==0)
        {
            cout<<"YES\n"<<x<<endl;
            return 0;
        }
    }

    //两位
    for(ll i=0;i<s.size();i++)
        for(ll j=i+1;j<s.size();j++)
        {
            ll x=(s[i]-'0')*10+s[j]-'0';
            if(x%8==0)
            {
                cout<<"YES\n"<<x<<endl;
                return 0;
            }
        }

    //三位
    for(ll i=0;i<s.size();i++)
        for(ll j=i+1;j<s.size();j++)
            for(ll k=j+1;k<s.size();k++)
            {
                ll x=(s[i]-'0')*100+(s[j]-'0')*10+s[k]-'0';
                if(x%8==0)
                {
                    cout<<"YES\n"<<x<<endl;
                    return 0;
                }
            }

    cout<<"NO"<<endl;
    return 0;
}
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

Pretty Boy Fox

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

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

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

打赏作者

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

抵扣说明:

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

余额充值