1.rkt 430 B

12345678910111213141516171819
  1. #lang racket
  2. (define line
  3. (call-with-input-file "input"
  4. (λ (fp) (read-line fp))))
  5. (define strs (string-split line ","))
  6. (define (calc-hash str)
  7. (define len (string-length str))
  8. (let loop ((i 0) (cur 0))
  9. (if (< i len)
  10. (let ()
  11. (define c (string-ref str i))
  12. (define ascii (char->integer c))
  13. (loop (+ i 1) (modulo (* 17 (+ cur ascii)) 256)))
  14. cur)))
  15. (apply + (map calc-hash strs))