k, n, f = map(int, input().split()) ages = sum([int(i) for i in input().split()]) beans = k * n - ages if (beans >= 0): print(beans) else: print(-1)