結果

問題 No.70 睡眠の重要性!
ユーザー kmtrc130kmtrc130
提出日時 2019-03-18 15:20:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 5,000 ms
コード長 909 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 111,304 KB
実行使用メモリ 25,264 KB
最終ジャッジ日時 2024-07-18 09:55:43
合計ジャッジ時間 1,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,264 KB
testcase_01 AC 27 ms
25,136 KB
testcase_02 AC 25 ms
25,136 KB
testcase_03 AC 25 ms
25,100 KB
testcase_04 AC 25 ms
25,140 KB
testcase_05 AC 26 ms
24,880 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;

class Program
{
    public void Solve()
    {
        int N = int.Parse(Console.ReadLine());
        string[] HMhm;
        int[] hm;

        TimeSpan time, sTime, eTime;
        int sleepTime = 0;

        for (int i = 0; i < N; i++)
        {
            HMhm = Console.ReadLine().Split(' ');

            hm = HMhm[0].Split(':').Select(s => int.Parse(s)).ToArray();
            sTime = new TimeSpan(hm[0], hm[1], 0);

            hm = HMhm[1].Split(':').Select(s => int.Parse(s)).ToArray();
            eTime = new TimeSpan(hm[0], hm[1], 0);

            time = (eTime - sTime < new TimeSpan(0, 0, 0) ? eTime - sTime + new TimeSpan(24, 0, 0) : eTime - sTime);

            sleepTime += time.Hours * 60 + time.Minutes;
        }

        Console.WriteLine(sleepTime);
    }

    static void Main()
    {
        var solver = new Program();
        solver.Solve();
    }
}
0