CF149B.Martian Clock

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Having stayed home alone, Petya decided to watch forbidden films on the Net in secret. "What ungentlemanly behavior!" — you can say that, of course, but don't be too harsh on the kid. In his country films about the Martians and other extraterrestrial civilizations are forbidden. It was very unfair to Petya as he adored adventure stories that featured lasers and robots.

Today Petya is watching a shocking blockbuster about the Martians called "R2:D2". What can "R2:D2" possibly mean? It might be the Martian time represented in the Martian numeral system. Petya knows that time on Mars is counted just like on the Earth (that is, there are 2424 hours and each hour has 6060 minutes). The time is written as " aa : bb ", where the string aa stands for the number of hours (from 00 to 2323 inclusive), and string bb stands for the number of minutes (from 00 to 5959 inclusive). The only thing Petya doesn't know is in what numeral system the Martian time is written.

Your task is to print the radixes of all numeral system which can contain the time " aa : bb ".

输入格式

The first line contains a single string as " aa : bb " (without the quotes). There aa is a non-empty string, consisting of numbers and uppercase Latin letters. String aa shows the number of hours. String bb is a non-empty string that consists of numbers and uppercase Latin letters. String bb shows the number of minutes. The lengths of strings aa and bb are from 11 to 55 characters, inclusive. Please note that strings aa and bb can have leading zeroes that do not influence the result in any way (for example, string "008:1" in decimal notation denotes correctly written time).

We consider characters 0, 1, ..., 9 as denoting the corresponding digits of the number's representation in some numeral system, and characters A, B, ..., Z correspond to numbers 10, 11, ..., 35.

输出格式

Print the radixes of the numeral systems that can represent the time " aa : bb " in the increasing order. Separate the numbers with spaces or line breaks. If there is no numeral system that can represent time " aa : bb ", print the single integer 0. If there are infinitely many numeral systems that can represent the time " aa : bb ", print the single integer -1.

Note that on Mars any positional numeral systems with positive radix strictly larger than one are possible.

输入输出样例

  • 输入#1

    11:20
    

    输出#1

    3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
  • 输入#2

    2A:13
    

    输出#2

    0
    
  • 输入#3

    000B:00001
    

    输出#3

    -1
    

说明/提示

Let's consider the first sample. String "11:20" can be perceived, for example, as time 4:6, represented in the ternary numeral system or as time 17:32 in hexadecimal system.

Let's consider the second sample test. String "2A:13" can't be perceived as correct time in any notation. For example, let's take the base-11 numeral notation. There the given string represents time 32:14 that isn't a correct time.

Let's consider the third sample. String "000B:00001" can be perceived as a correct time in the infinite number of numeral systems. If you need an example, you can take any numeral system with radix no less than 12.

首页