晚风


私信TA

用户名:uq_24611172404

访问量:2491

签 名:

等  级
排  名 5234
经  验 1572
参赛次数 0
文章发表 35
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:


参考代码:


n=int(input())

a=86400

s=n//1000%a

h=s//3600

s=s-h*3600

m=s//60

s=s-m*60

if(h<10 and m<10 and s<10 ):

    print("0{}:0{}:0{}".format(h,m,s))

elif(h<10 and m<10 ):

    print("0{}:0{}:{}".format(h,m,s))

elif(h<10 and s<10 ):

    print("0{}:{}:0{}".format(h,m,s))

elif(m<10 and s<10 ):

    print("{}:0{}:0{}".format(h,m,s))

elif(h<10  ):

    print("0{}:{}:{}".format(h,m,s))

elif(m<10  ):

    print("{}:0{}:{}".format(h,m,s))

elif(s<10  ):

    print("{}:{}:0{}".format(h,m,s))


 

0.0分

0 人评分

  评论区

  • «
  • »