21328_PersistentNumbers

2022-5-16 18:19| 发布者: Hocassian| 查看: 34| 评论: 0|原作者: 肇庆学院ACM合集

摘要:
C:\Users\Administrator\Downloads\2019-10-12-10-14-4-89505157111900-Problem List-采集的数据-后羿采集器.html

Pro.ID

21328

Title

Persistent Numbers

Title链接

http://10.20.2.8/oj/exercise/problem?problem_id=21328

AC

16

Submit

53

Ratio

30.19%

时间&空间限制

  • Time Limit: 3000/1000 MS (Java/Others)     Memory Limit: 131072/65536 K (Java/Others)
  • 描述

    The multiplicative persistence of a number is defined by Neil Sloane (Neil J.A. Sloane in The Persistence of a Number published in Journal of Recreational Mathematics 6, 1973, pp. 97-98., 1973) as the number of steps to reach a one-digit number when repeatedly multiplying the digits. Example:

    679 → 378 → 168 → 48 → 32 → 6.

    That is, the persistence of 679 is 6. The persistence of a single digit number is 0. At the time of this writing it is known that there are numbers with the persistence of 11. It is not known whether there are numbers with the persistence of 12 but it is known that if they exists then the smallest of them would have more than 3000 digits.

    The problem that you are to solve here is: what is the smallest number such that the first step of computing its persistence results in the given number?

    输入

    For each test case there is a single line of input containing a decimal number with up to 1000 digits. A line containing -1 follows the last test case.

    输出

    Description

    The multiplicative persistence of a number is defined by Neil Sloane (Neil J.A. Sloane in The Persistence of a Number published in Journal of Recreational Mathematics 6, 1973, pp. 97-98., 1973) as the number of steps to reach a one-digit number when repeatedly multiplying the digits. Example:

    679 → 378 → 168 → 48 → 32 → 6.

    That is, the persistence of 679 is 6. The persistence of a single digit number is 0. At the time of this writing it is known that there are numbers with the persistence of 11. It is not known whether there are numbers with the persistence of 12 but it is known that if they exists then the smallest of them would have more than 3000 digits.

    The problem that you are to solve here is: what is the smallest number such that the first step of computing its persistence results in the given number?

    Input

    For each test case there is a single line of input containing a decimal number with up to 1000 digits. A line containing -1 follows the last test case.

    Output

    For each test case you are to output one line containing one integer number satisfying the condition stated above or a statement saying that there is no such number in the format shown below.

    Sample Input

    0
    1
    4
    7
    18
    49
    51
    768
    -1

    Sample Output

    10
    11
    14
    17
    29
    77
    There is no such number.
    2688

    Source

    样例输入

    0
    1
    4
    7
    18
    49
    51
    768
    -1

    样例输出

    10
    11
    14
    17
    29
    77
    There is no such number.
    2688

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部