結果

問題 No.70 睡眠の重要性!
ユーザー abL8ZLsTbFabL8ZLsTbF
提出日時 2016-08-21 02:47:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 5,000 ms
コード長 631 bytes
コンパイル時間 2,474 ms
コンパイル使用メモリ 106,624 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-04-25 11:00:28
合計ジャッジ時間 1,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,944 KB
testcase_01 AC 25 ms
18,944 KB
testcase_02 AC 23 ms
19,072 KB
testcase_03 AC 24 ms
19,072 KB
testcase_04 AC 24 ms
19,072 KB
testcase_05 AC 25 ms
18,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

public class Program
{
	public static void Main()
	{
		int N = int.Parse(Console.ReadLine());
		int ans = 0;
		for (int i = 0; i < N; i++)
		{
			string[] time = Console.ReadLine().Split();
			int[] sleep = time[0].Split(':').Select(j => int.Parse(j))
				.ToArray();
			int sleep_minute = sleep[0] * 60 + sleep[1];
			int[] wakeUp = time[1].Split(':').Select(j => int.Parse(j))
				.ToArray();
			int wakeUp_minute = wakeUp[0] * 60 + wakeUp[1];
			if (sleep_minute > wakeUp_minute)
			{
				wakeUp_minute += 24 * 60;
			}
			ans += wakeUp_minute - sleep_minute;
		}
		Console.WriteLine(ans);
	}
}
0