1.scm 643 B

123456789101112131415161718192021222324252627
  1. (import (chicken string))
  2. (import (chicken io))
  3. (import (chicken sort))
  4. (define input
  5. (with-input-from-file "input"
  6. (lambda ()
  7. (let loop ((ret '()))
  8. (let ((line (read-line)))
  9. (if (eof-object? line)
  10. (reverse ret)
  11. (loop (cons line ret))))))))
  12. (set! input (map string-split input))
  13. (define first-lst (map string->number (map car input)))
  14. (define second-lst (map string->number (map cadr input)))
  15. (set! first-lst (sort first-lst <))
  16. (set! second-lst (sort second-lst <))
  17. (define diff (map abs (map - first-lst second-lst)))
  18. (define result (apply + diff))
  19. (display result)
  20. (newline)