結果

問題 No.70 睡眠の重要性!
コンテスト
ユーザー hibit_at
提出日時 2022-05-13 15:58:42
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 416 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,184 ms
コンパイル使用メモリ 20,640 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2026-04-03 05:02:49
合計ジャッジ時間 7,791 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge4_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from datetime import datetime, timedelta
n = int(input())
ans = 0
for i in range(n):
    S, s = list(map(str, input().split(' ')))
    H,M = list(map(int,S.split(':')))
    h,m = list(map(int,s.split(':')))
    sleep_time = datetime(2020,1,1,H,M)
    wake_time = datetime(2020,1,1,h,m)
    if sleep_time > wake_time:
        wake_time += timedelta(hours=24)
    ans += (wake_time - sleep_time).seconds
print(ans//60)
0