sack, rate, _ = map(int, input().split(' ')) need = sum(map(int, input().split(' '))) amount = sack * rate remain = amount - need print(max(remain, -1))