結果

問題 No.70 睡眠の重要性!
ユーザー noriocnorioc
提出日時 2024-07-15 09:37:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,564 KB
最終ジャッジ日時 2024-07-15 09:37:10
合計ジャッジ時間 1,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,864 KB
testcase_01 AC 35 ms
51,824 KB
testcase_02 AC 40 ms
52,504 KB
testcase_03 AC 36 ms
53,564 KB
testcase_04 AC 38 ms
52,992 KB
testcase_05 AC 37 ms
52,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())


def f(s: str) -> int:
    h, m = map(int, s.split(':'))
    return h * 60 + m


ans = 0
for _ in range(N):
    s, t = input().split()
    a = f(s)
    b = f(t)
    if a < b:
        ans += b - a
    else:
        ans += (24 * 60 - a) + b

print(ans)
0