結果

問題 No.70 睡眠の重要性!
ユーザー ssmkzkssmkzk
提出日時 2018-06-07 13:13:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 470 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-30 10:27:48
合計ジャッジ時間 788 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import datetime

N = int(input())
sum = 0
for i in range(N):
    l = list(map(str, input().split()))
    l1 = list(map(int, l[0].split(":")))
    l2 = list(map(int, l[1].split(":")))
    if l1[0] > l2[0]:
        d1 = datetime.datetime(2018, 6, 6,hour = l1[0], minute = l1[1])
    else:
        d1 = datetime.datetime(2018, 6, 7,hour = l1[0], minute = l1[1])
    d2 = datetime.datetime(2018, 6, 7, hour = l2[0], minute = l2[1])
    sum += (d2-d1).seconds

print(sum//60)
0