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