結果

問題 No.70 睡眠の重要性!
ユーザー ytftytft
提出日時 2022-11-07 10:20:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 278 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 70,784 KB
最終ジャッジ日時 2024-07-20 18:52:38
合計ジャッジ時間 1,685 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
69,888 KB
testcase_01 AC 82 ms
70,272 KB
testcase_02 AC 82 ms
70,400 KB
testcase_03 AC 86 ms
70,656 KB
testcase_04 AC 87 ms
70,784 KB
testcase_05 AC 79 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from datetime import datetime
input=lambda:sys.stdin.readline().rstrip()
def trans(S):
	return datetime.strptime(S,"%H:%M")
N,ans=int(input()),0
for i in range(N):
	temp=input().split()
	ans+=(trans(temp[1])-trans(temp[0])).total_seconds()//60%(24*60)
print(int(ans))
0