K, N, F = map(int,input().split()) A = [int(i) for i in input().split()] print(K * N - sum(A) if K * N >= sum(A) else -1)