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