K,N,F = map(int,input().split()) A = list(map(int,input().split())) n = K * N for a in A: n = n - a if n >= 0: print(n) else: print(-1)