結果

問題 No.70 睡眠の重要性!
ユーザー gigurururugigurururu
提出日時 2014-11-19 16:40:11
言語 Python2
(2.7.18)
結果
AC  
実行時間 14 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-06-10 21:16:15
合計ジャッジ時間 824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,424 KB
testcase_01 AC 14 ms
7,424 KB
testcase_02 AC 13 ms
7,296 KB
testcase_03 AC 13 ms
7,296 KB
testcase_04 AC 14 ms
7,296 KB
testcase_05 AC 13 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from datetime import datetime,timedelta
t=timedelta()
for _ in range(input()):
    s,e=[datetime.strptime(str,"%H:%M") for str in raw_input().split()]
    if e<s: s-=timedelta(1)
    t+=e-s
print int(t.total_seconds()/60)
0