slovo/benchmarks/array-struct-field-loop/clojure/array_struct_field_loop.clj
2026-05-22 08:38:43 +02:00

30 lines
826 B
Clojure

(set! *warn-on-reflection* true)
(set! *unchecked-math* :warn-on-boxed)
(def loop-count 1000000)
(def expected-checksum 3875011)
(def record {:digits [3 1 4 1 5 9 2 6]})
(defn configured-loop-count []
(try
(let [line (read-line)
value (Integer/parseInt (.trim ^String line))]
(if (pos? value) value loop-count))
(catch Exception _
loop-count)))
(defn array-struct-field-loop [limit]
(loop [i 0
acc 11]
(if (< i limit)
(let [next (+ acc (nth (:digits record) (rem i 8)))
bounded (if (> next 1000000000)
(- next 1000000000)
next)]
(recur (inc i) bounded))
acc)))
(let [result (array-struct-field-loop (configured-loop-count))]
(println result)
(System/exit (if (= result expected-checksum) 0 1)))