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