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