結果

問題 No.70 睡眠の重要性!
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-01-15 20:40:48
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 23 ms / 5,000 ms
コード長 844 bytes
コンパイル時間 56 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-12-21 13:45:52
合計ジャッジ時間 822 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
15,872 KB
testcase_01 AC 22 ms
16,128 KB
testcase_02 AC 22 ms
15,872 KB
testcase_03 AC 21 ms
16,000 KB
testcase_04 AC 20 ms
15,872 KB
testcase_05 AC 19 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (input->list)
    (let ((n (string->number (read-line))))
        (let loop ((cnt n)
                   (ls '()))
            (if (zero? cnt)
                ls
                (loop (- cnt 1)
                      (cons (map string->number
                                 (string-split (read-line) #[:#\space]))
                            ls))))))

(define (solve)
    (let loop ((items (input->list)) (sum 0))
        (if (null? items)
            sum
            (receive
                (h1 m1 h2 m2)
                (apply values (car items))
                (let* ((min1 (+ (* h1 60) m1))
                       (min2 (+ (* h2 60) m2))
                       (diff  (- min2 min1))
                       (duration (if (> diff 0) diff (+ 1440 diff))))
                    (loop (cdr items) (+ sum duration)))))))

(print (solve))
0