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