結果

問題 No.70 睡眠の重要性!
ユーザー YCescaYCesca
提出日時 2016-09-09 03:02:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 260 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-11-15 22:56:36
合計ジャッジ時間 1,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
12,416 KB
testcase_01 AC 42 ms
12,416 KB
testcase_02 AC 43 ms
12,416 KB
testcase_03 AC 44 ms
12,416 KB
testcase_04 AC 43 ms
12,544 KB
testcase_05 AC 43 ms
12,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from datetime import datetime as dt
n = int(input())
c = []
for i in range(n):
    a, b = map(str, input().split())
    at = dt.strptime(a,"%H:%M")
    bt = dt.strptime(b,"%H:%M")
    c.append((bt-at).seconds) #足し引きすると timedelta
print(sum(c)//60)
0