k,n,f=map(int,input().split()) a=map(int,input().split()) total=k*n if sum(a)<=total: print(total-sum(a)) else: print(-1)