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