結果

問題 No.70 睡眠の重要性!
ユーザー cccccc
提出日時 2022-09-08 11:40:12
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 1,084 bytes
コンパイル時間 16,831 ms
コンパイル使用メモリ 169,432 KB
実行使用メモリ 184,784 KB
最終ジャッジ日時 2024-05-03 07:10:01
合計ジャッジ時間 18,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
30,332 KB
testcase_01 AC 48 ms
30,324 KB
testcase_02 AC 46 ms
30,080 KB
testcase_03 AC 47 ms
30,080 KB
testcase_04 AC 48 ms
30,208 KB
testcase_05 AC 47 ms
184,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (83 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;
using System.Text.RegularExpressions;


class Program
{
    static void Main()
    {
        /*3
          22:24 5:9
          22:46 5:37
          1:11 7:11
        */

        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(int.Parse).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);
    }
}
0