C. Divisibility by Eight

来源:互联网 发布:淘宝王子 删除中差评 编辑:程序博客网 时间:2024/05/16 10:58

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Sample test(s)
input
3454
output
YES344
input
10
output
YES0
input
111111
output
NO

解题说明:此题可以通过穷举暴力来做,三层循环判断。


#include<cstdio>#include<iostream>#include<algorithm>#include<cstring>#include<string>#include<cmath>using namespace std;string s;int main() {    cin >> s;    s = "00" + s;    for (int i = 0; i < s.length(); i++){for (int j = i+1; j < s.length(); j++){for (int k = j+1; k < s.length(); k++){int x = 100*(s[i]-'0') + 10*(s[j]-'0') + s[k]-'0';if (x % 8 == 0) {cout << "YES\n" << x << endl; return 0;}}}}    cout << "NO"<<endl;}


0 0
原创粉丝点击