K,N,F = map(int,input().split()) A = list(map(int,input().split())) MK = K*N G = sum(A) if MK >= G: print(MK-G) else: print(-1)