k,n,_ = map(int, input().split()) eat = sum(map(int, input().split())) eat = k*n - eat if eat >= 0: print(eat) else: print(-1)