프로그램 명: coci_zgodan
제한시간: 1 초
An integer is considered handsome if every two of its consecutive digits are of different parity. For a
given integer N, what is its closest handsome number?
Please note: Numbers consisting of only one digit are handsome numbers. The distance of two
numbers is the absolute value of their difference.
입력
The first and only line of input contains the positive integer N that consists of at most thousand digits
and is not handsome.
출력
The first and only line of output must contain the required closest handsome number. If two closest
numbers exist, output the smaller number first and then the larger one and separate them by a single
space.
입출력 예
입력
13
출력
12 14
입력
5801001
출력
5810101
출처:coci_2013-2014_contest5
[질/답]
[제출 현황]
[푼 후(0)]