zoukankan      html  css  js  c++  java
  • Beautiful Year(拆分四位数)

    Description

    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.

    Input

    The single line contains integer y(1000 ≤ y ≤ 9000) — the year number.

    Output

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

    Sample Input

    Input
    1987
    Output
    2013
    Input
    2013
    Output
    2014
     1 int main()
     2 {
     3     int n,a,b,c,d,i;
     4     while(scanf("%d",&n)!=EOF)
     5     {
     6         for(i=n+1;i<9999;i++)
     7         {
     8             a=i%10;
     9             b=(i/10)%10;
    10             c=(i/100)%10;
    11             d=i/1000;
    12             if(a!=b&&a!=c&&a!=d&&b!=c&&b!=d&&c!=d)
    13             {
    14                 printf("%d
    ",i);
    15                 break;
    16             }
    17 
    18         }
    19     }
    20     return 0;

    怎么说呢,这算是一道水题了吧,找出给定年份之后各个位数之和最小的那一个数,不过各个位上的数不能出现相同 distinct!!

  • 相关阅读:
    scott登录查询常用语句
    Oracle服务端及客户端安装
    SVN简单使用
    dos命令--查询进程
    第二周学习总结
    第一周学习总结
    虚拟机安装教程及网络连接方式的解释
    两天学习总结
    方差
    thinkphp 总结 转
  • 原文地址:https://www.cnblogs.com/wkfvawl/p/8683951.html
Copyright © 2011-2022 走看看