2.rkt 651 B

1234567891011121314151617181920212223242526272829
  1. #lang racket
  2. (define in (open-input-file "input"))
  3. (define (read-num)
  4. (define line (read-line in))
  5. (string->number
  6. (apply
  7. string-append
  8. (string-split
  9. (cadr (string-split (string-trim line) ":"))))))
  10. (define time (read-num))
  11. (define distance (read-num))
  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 (solve time distance))
  23. (newline)