k,n,f = map(int,input().split()) a = list(map(int,input().split())) print(-1 if k*n-sum(a) < 0 else k*n-sum(a))