3 条题解

  • 0
    @ 2024-10-10 22:04:27
    a=int(input())
    c=0
    b=[]
    while(a):
    b.append(a%2)
    a=a//2
    c=c+1
    while(c):
    c=c-1
    print(b[c],end='')
    
    • 0
      @ 2022-11-6 17:34:31

      《最短代码》

      b = int(input()
      print(bin(b)[2:])
      
      • -1
        @ 2023-5-1 21:13:42

        最短代码 b = int(input()) print(bin(b)[2:])

        • 1

        信息

        ID
        1369
        时间
        1000ms
        内存
        128MiB
        难度
        7
        标签
        递交数
        75
        已通过
        19
        上传者