2.scm 736 B

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