1.scm 741 B

123456789101112131415161718192021222324252627
  1. (import (chicken io))
  2. (import regex)
  3. (import (chicken string))
  4. (define in-str
  5. (with-input-from-file "input" read-string))
  6. ;; (display in-str)
  7. (define re "mul\\([0-9]+,[0-9]+\\)")
  8. (define matched
  9. (let loop ((start 0) (result '()))
  10. (define search-ret (string-search re in-str start))
  11. (if (not search-ret)
  12. (reverse result)
  13. (loop (cadar (string-search-positions re in-str start))
  14. (cons (car search-ret) result)))))
  15. (define (extract-numbers str)
  16. (define nums-str (substring str 4 (- (string-length str) 1)))
  17. (map string->number (string-split nums-str ",")))
  18. (define (calculate str)
  19. (define vals (extract-numbers str))
  20. (* (car vals) (cadr vals)))
  21. (display (apply + (map calculate matched)))