K,N,F = map(int,input().split()) sum_age = sum(list(map(int,input().split()))) r_bean = K*N - sum_age if r_bean < 0: print(-1) else: print(r_bean)