geogooooooooooooooooooooo
truncate( ((5000000/d)) - (t < 100 ? (t/5) : 200) )
d = distance(miles) t = time(seconds)
-base score is 5000000/distance (lower distance is better) -the timing logic subtracts time/5 from the base score only if time is less than 100, otherwise, subtract 200 (lower time is better) -the final result is truncated to avoid decimals
-the formula may be modified in the future if needed