7 条题解

  • 0
    @ 2024-12-18 11:27:19
    a,b=map(float,input().split())
    print(int(a/b),end=" ")
    if len(str(a/b))==3:
        print(str(round(a/b,2))+"0")
    else:
        print(str(round(a/b,2)))
    

    信息

    ID
    15
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    递交数
    1007
    已通过
    474
    上传者