結果
問題 | No.70 睡眠の重要性! |
ユーザー | しらゆき |
提出日時 | 2015-11-20 11:38:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 758 bytes |
コンパイル時間 | 935 ms |
コンパイル使用メモリ | 106,744 KB |
実行使用メモリ | 26,228 KB |
最終ジャッジ日時 | 2024-09-13 17:05:26 |
合計ジャッジ時間 | 1,381 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
26,132 KB |
testcase_01 | AC | 25 ms
22,196 KB |
testcase_02 | AC | 25 ms
26,008 KB |
testcase_03 | AC | 25 ms
23,932 KB |
testcase_04 | AC | 25 ms
23,796 KB |
testcase_05 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class Program { static void Main() { int n = int.Parse(Console.ReadLine()); int[] H = new int[n]; int[] M = new int[n]; int[] h = new int[n]; int[] m = new int[n]; for (int i = 0; i < n; i++) { string[] s = Console.ReadLine().Split(); H[i] = int.Parse(s[0].Split(':')[0]); M[i] = int.Parse(s[0].Split(':')[1]); h[i] = int.Parse(s[1].Split(':')[0]); m[i] = int.Parse(s[1].Split(':')[1]); } int sleep = 0; for (int i = 0; i < n; i++) { if (H[i] > h[i]) h[i] += 24; sleep += h[i] * 60 + m[i] - H[i] * 60 - M[i]; } Console.WriteLine(sleep); } }