結果
問題 | No.70 睡眠の重要性! |
ユーザー | Takuya Noguchi |
提出日時 | 2018-03-04 13:48:16 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 79 ms / 5,000 ms |
コード長 | 284 bytes |
コンパイル時間 | 27 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,160 KB |
最終ジャッジ日時 | 2024-07-07 14:40:15 |
合計ジャッジ時間 | 933 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
12,160 KB |
testcase_01 | AC | 78 ms
12,160 KB |
testcase_02 | AC | 77 ms
12,160 KB |
testcase_03 | AC | 74 ms
12,160 KB |
testcase_04 | AC | 77 ms
12,160 KB |
testcase_05 | AC | 72 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
gets puts readlines.inject(0) { |sum, line| start_time, end_time = line.chomp.split start_hour, start_min = start_time.split(':').map(&:to_i) end_hour, end_min = end_time.split(':').map(&:to_i) sum + ((end_hour * 60 + end_min) - (start_hour * 60 + start_min) + 1440) % 1440 }