当前位置:   article > 正文

aoj1303

oj1303

继续python系列,python能够自动推断类型这个太好用了,根本不用声明类型,自己根据运行情况推断出所用的类型,所以在定义函数的时候根本不用声明参数的类型。
下面这个题目aoj1303,求2的指数,如下:

def gethex(a):
    li=[]
    while a:
        zhi=a%2
        li.append(zhi)
        a=a/2
    return li

def theNumTwo(List):
    length=len(List)
    num=0
    for i in range(length):
        if List[i]==0:
            num+=1
        else:
            break;
    return num

inputstr=raw_input()
while inputstr!='':
    #print inputstr
    a,b=map(int,inputstr.split())
    hexa=gethex(a)
    hexb=gethex(b)
    max1=theNumTwo(hexa)
    max2=theNumTwo(hexb)
    if max1>max2:
        print '>'
    elif max1<max2:
        print '<'
    else:
        print '='
    inputstr=raw_input()

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/72503
推荐阅读
相关标签
  

闽ICP备14008679号