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