K, N, F = list(map(int, input().split())) A = list(map(int, input().split())) n_beans = K * N n_eat = sum(A) print(max(n_beans - n_eat, -1))