K,N,F=map(int,input().split()) S=0 X=N*K for x in input().split(): S+=int(x) if X>=S: print(X-S) else: print(-1)