Algorithm


C. Divisibility by Eight
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.

Examples
input
Copy
3454
output
Copy
YES
344
input
Copy
10
output
Copy
YES
0
input
Copy
111111
output
Copy
NO



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <string>
#include <memory.h>

using namespace std;

string s;
bool dp[101][1001];

bool calc(int i, int number) {
    if(number % 8 == 0 && number != 0) {
      cout << "YES" << endl;
      cout << number << endl;
      exit(0);
    }
    
    if(i == s.length()) return 0;
    if(!dp[i][number]) return 0;
    
    calc(i + 1, number);
    calc(i + 1, ((number * 10) + (s[i] - '0')) % 1000);
    
    return dp[i][number] = 0;
}

int main() {
    cin >> s;
    
    if(s.find('0') != string::npos) {
      cout << "YES" << endl << 0 << endl;
      return 0;
    }
    
    memset(dp, 1, sizeof dp);
    if(!calc(0, 0))
        cout << "NO" << endl;
    
    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
3454

Output

x
+
cmd
YES
344
Advertisements

Demonstration


Codeforces Solution-Divisibility by Eight-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+