K, N, F = [int(i) for i in input().split()] A = [int(i) for i in input().split()] ans = max(K * N - sum(A), -1) print(ans)