K,N,F = map(int,input().split()) A = list(map(int,input().split())) sum = 0 for i in A: sum += i if (sum <= K*N): print(K*N - sum) else: print(-1)