CF271A.Beautiful Year

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits.

Now you are suggested to solve the following problem: given a year number, find the minimum year number which is strictly larger than the given one and has only distinct digits.

输入格式

The single line contains integer yy (1000<=y<=9000)(1000<=y<=9000) — the year number.

输出格式

Print a single integer — the minimum year number that is strictly larger than yy and all it's digits are distinct. It is guaranteed that the answer exists.

输入输出样例

  • 输入#1

    1987
    

    输出#1

    2013
    
  • 输入#2

    2013
    

    输出#2

    2014
    
首页