k,n,m = map(int,input().split()) a = list(map(int,input().split())) b = k*n ans = b-sum(a) print(ans if ans >= 0 else -1)