K,N,F = [int(i) for i in input().split()] A = [int(i) for i in input().split()] if K*N < sum(A): print(-1) else: print(K*N-sum(A))