k, n, _f = gets.chomp!.split(' ').map(&:to_i) a = gets.chomp!.split(' ').map(&:to_i) r = k * n - a.sum if r >= 0 puts r else puts -1 end