当前位置:网站首页>lintcode2330 · 计算x秒后的时间
lintcode2330 · 计算x秒后的时间
2022-08-03 05:11:00 【北北的巷栀酒】
描述
你的代码需要从标准输入流(控制台)中读入当前时间,输入形式如 hh:mm:ss
,分别代表时、分和秒,再给出一个正整数 x
,求经过 x
秒后的时间表示,计算出结果后并打印到标准输出流(控制台)中。
样例一
当 hh:mm:ss = 07:59:40
,x = 20
时,程序执行打印出的结果为:
08:00:00
样例二
当 hh:mm:ss = 23:00:01
,x = 86459
时,程序执行打印出的结果为:
23:01:00
代码编辑:
# write your code here
# read data from console
# output the answer to the console according to the requirements of the question
s=input()
l=int(input())
hh=int(s[0:2])
mm=int(s[3:5])
ss=int(s[6:8])
a=ss+l
ss=a%60
b=int(mm+a/60)
mm=b%60
hh=int((hh+b/60)%24)
hh=str(hh).rjust(2,'0')
mm=str(mm).rjust(2,'0')
ss=str(ss).rjust(2,'0')
print(f'{hh}:{mm}:{ss}')
边栏推荐
猜你喜欢
VSO Downloader Ultimate 5.0.1.45 中文多语免费版 在线视频下载工具
Redis6学习笔记
High availability, two locations and three centers
Djiango第四次培训笔记
【HMS core】【Ads Kit】Huawei Advertising——Overseas applications are tested in China. Official advertisements cannot be displayed
idea uses @Autowired annotation to explain the reasons and solutions
Exception (abnormal) and Error (error) difference analysis
MySql数据库
Object类与常用API
Modelarts第一次培训
随机推荐
【Biotin Azide|cas:908007-17-0】Price_Manufacturer
MCM box model modeling method and source analysis of atmospheric O3
ss-4.2 多个eureka集群案例
ss-3.工程重构
Common fluorescent dyes to modify a variety of groups and its excitation and emission wavelength data in the data
【HMS core】【Ads Kit】Huawei Advertising——Overseas applications are tested in China. Official advertisements cannot be displayed
IO process thread -> thread -> day5
FileZilla 搭建ftp服务器
1059 C语言竞赛 (20 分)(C语言)
ss-2.子项目互相访问(order80 -> payment8001)
tag单调栈-单调栈预备知识-lt.739. 每日温度
13.
lt.647. Palindromic substring + lt.516. Longest palindrome subsequence 1069 微博转发抽奖 (20 分)(C语言)
celery工作原理图
Tributyl-mercaptophosphane "tBuBrettPhos Pd(allyl)" OTf), 1798782-17-8
User password verification
第三次HarmonyOS培训
Tag stack - stack monotonically preparatory knowledge - lt. 739. The daily temperature
Kaggle 入门(Kaggle网站使用及项目复现)
Odps temporary query can write SQL, turned out to a named?