K, N, F = map(int, input().split()) A = map(int, input().split()) nof_beans = K*N - sum(A) if nof_beans >= 0: print(nof_beans) else: print(-1)