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