Sum of Divisors for OCaml Golf Competition by yt

while 1=1do
let rec q=read_int()and
s=ref q in for i=1to q/2do
s:=!s+q/i*i/q*i done;Printf.printf"%d: %d\n"q!s done

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page