結果

問題 No.70 睡眠の重要性!
ユーザー pypypymipypypymi
提出日時 2022-02-17 21:09:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 694 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 55,564 KB
最終ジャッジ日時 2024-06-29 07:50:19
合計ジャッジ時間 908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,372 KB
testcase_01 AC 42 ms
55,420 KB
testcase_02 AC 40 ms
54,136 KB
testcase_03 AC 42 ms
53,872 KB
testcase_04 AC 41 ms
55,564 KB
testcase_05 AC 40 ms
55,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import datetime as dt
n = int(input())
v = 0
for i in range(n):
    s1,s2 = input().split()
    s1_array = s1.split(":")
    s1_h = int(s1_array[0])
    s1_m = int(s1_array[1])
    s1_delta = dt.timedelta(hours=s1_h,minutes=s1_m)
    
    s2_array = s2.split(":")
    s2_h = int(s2_array[0])
    s2_m = int(s2_array[1])
    s2_delta = dt.timedelta(hours=s2_h,minutes=s2_m)
    
    #print(dt.timedelta(hours=24)-s1_delta)
    if s1_h<24 and s2_h<=s1_h:
        #print(((dt.timedelta(hours=24)-s1_delta).seconds+s2_delta.seconds)//60)
        v+=((dt.timedelta(hours=24)-s1_delta).seconds+s2_delta.seconds)//60
    else:
        v+=(s2_delta.seconds-s1_delta.seconds)//60
print(v)
    
    
    
0