結果

問題 No.70 睡眠の重要性!
ユーザー nobigomunobigomu
提出日時 2018-03-21 18:37:01
言語 Lua
(LuaJit 2.1.1734355927)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 5,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-24 19:37:10
合計ジャッジ時間 1,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

print((function (f)
	local r = 0
	for _=1,tonumber(io.stdin:read("*l")) do
		r = r + f(io.stdin:read("*l"))
	end
	return r
end)(function (s)
	local t = {}
	s:gsub("%d+", function (e) table.insert(t,tonumber(e)) end)
	local l, r = t[1]*60+t[2], t[3]*60+t[4]
	return l <= r and r-l or 24*60-l+r
end))
0