1.rkt 758 B

1234567891011121314151617181920212223242526272829303132
  1. #lang racket
  2. (define in (open-input-file "input"))
  3. (define (read-num-list)
  4. (define line (read-line in))
  5. (map
  6. string->number
  7. (string-split
  8. (cadr (string-split (string-trim line) ":")))))
  9. (define times (read-num-list))
  10. (define distances (read-num-list))
  11. (define games (map cons times distances))
  12. (define (calc time hold-time)
  13. (* hold-time (- time hold-time)))
  14. (define (solve time distance)
  15. (define (loop counter hold-time)
  16. (if (> hold-time time)
  17. counter
  18. (if (> (calc time hold-time) distance)
  19. (loop (+ 1 counter) (+ 1 hold-time))
  20. (loop counter (+ 1 hold-time)))))
  21. (loop 0 0))
  22. (display (apply * (map
  23. (λ (x) (solve (car x) (cdr x)))
  24. games)))
  25. (newline)