per, num, mem = gets.split.map(&:to_i) total = num * per ages = gets.split.map(&:to_i) ages.each do |a| total -= a end p total < 0 ? -1 : total