k,n,f = gets.split.map &:to_i mame = k * n a = gets.split.map &:to_i if 0 > mame - a.inject(:+) puts -1 else puts mame - a.inject(:+) end