結果

問題 No.70 睡眠の重要性!
コンテスト
ユーザー togatoga
提出日時 2015-09-02 09:39:06
言語 PyPy2
(7.3.20)
コンパイル:
pypy2 -m py_compile _filename_
実行:
/usr/bin/pypy2 Main.pyc
結果
AC  
実行時間 83 ms / 5,000 ms
+ 61µs
コード長 345 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 67 ms
コンパイル使用メモリ 81,280 KB
実行使用メモリ 83,456 KB
最終ジャッジ日時 2026-07-17 19:55:01
合計ジャッジ時間 1,809 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import datetime
N = input()
res = 0
for i in range(N):
    s,e = raw_input().split()
    st = datetime.datetime.strptime(s, "%H:%M")
    et = datetime.datetime.strptime(e, "%H:%M")
    if (et < st):
        st -= datetime.timedelta(1)
        delta = et - st
    else:
        delta = et -st
    res += delta.total_seconds()
print int(res / 60)
0