K, N, F = map(int, input().split()) A = [] A = map(int, input().split()) A = list(A) totalMame = K*N totalAge = 0 for age in A: totalAge += age if totalAge <= totalMame: print(totalMame - totalAge) else: print(-1)