21395_Basic

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

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

Pro.ID

21395

Title

Basic

Title链接

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

AC

19

Submit

82

Ratio

23.17%

时间&空间限制

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

    The programming language Ada has integer constants that look like this: 123, 8#123#, 16#abc#. These constants represent the integers 123, 83 (123 base 8) and 2748 (abc base 16). More precisely, an integer may be a decimal integer given as a sequence of one or more digits less than 10, or it may be an integer to some specific base, given as the base followed by a sequence of one or more digits less than the base enclosed by # symbols. Lower case letters from a through f are used as the digits representing 10 through 15. In Ada, the base, if specified, must be a sequence of decimal digits. For this problem, however, the base may be of any form described above so long as it represents an integer between 2 and 16 inclusive.

    输入

    The first line of input contains a positive integer n. n lines follow.Input lines contain no spaces and are between 1 and 80 characters in length.

    输出

    Description
    The programming language Ada has integer constants that look like this: 123, 8#123#, 16#abc#. These constants represent the integers 123, 83 (123 base 8) and 2748 (abc base 16). More precisely, an integer may be a decimal integer given as a sequence of one or more digits less than 10, or it may be an integer to some specific base, given as the base followed by a sequence of one or more digits less than the base enclosed by # symbols. Lower case letters from a through f are used as the digits representing 10 through 15. In Ada, the base, if specified, must be a sequence of decimal digits. For this problem, however, the base may be of any form described above so long as it represents an integer between 2 and 16 inclusive.
    Input
    The first line of input contains a positive integer n. n lines follow.Input lines contain no spaces and are between 1 and 80 characters in length.
    Output
    For each line of input, output a line "yes" if it is a valid integer constant according to the above rules; otherwise output a line containing "no".
    Sample Input
    5
    2#101#
    2#101##123#
    17#abc#
    16#123456789abcdef#
    16#123456789abcdef#123456789abcdef#
    Sample Output
    yes
    yes
    no
    yes
    no
    Source

    样例输入

    5
    2#101#
    2#101##123#
    17#abc#
    16#123456789abcdef#
    16#123456789abcdef#123456789abcdef#

    样例输出

    yes
    yes
    no
    yes
    no

    作者


    路过

    雷人

    握手

    鲜花

    鸡蛋

    最新评论

    返回顶部