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