QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#204150#5279. New TimeOverLoad0 0ms0kbPython2639b2023-10-07 04:14:062023-10-07 04:14:06

Judging History

你现在查看的是最新测评结果

  • [2023-10-07 04:14:06]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:0kb
  • [2023-10-07 04:14:06]
  • 提交

answer

if __name__ == '__main__':

#Ввод    a=input()
#Параметры    h=int(a[0])*10+int(a[1])
    m=int(a[3])*10+int(a[4])

#Ввод    a=input()
#Параметры    real_h=int(a[0])*10+int(a[1])
    real_m=int(a[3])*10+int(a[4])

    real_minute=real_h*60+real_m
    minute=h*60+m
#Код    count=0# Бью задачу в лоб чтобы лучше понять её пока имею возможность)    t_minute=real_minute-minute
    if(t_minute>0):
        count=int(t_minute/60)+int(t_minute%60)
    elif(t_minute<0):
        count=int((1440+t_minute)/60)+int((1440+t_minute)%60)
    print(count)

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Judgement Failed

input:

11:57
12:00

output:


result: