Python50分求助

P5707 【深基2.例12】上学迟到

MC_xjhjdA @ 2024-05-12 11:09:27

a,b=map(int,input().split())
c=a//b+11 #总耗时(向下取整所以+1)
o2=str(60-c%60)
o1='0'+str(7-c//60)
print(o1+':'+o2)

by Terrible @ 2024-05-12 11:32:26

@MC_xjhjdA

考虑以下情况:

b 整除 a

60 整除 c

③总耗时大于 480


|