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