K, N, F = [int(i) for i in input().split()] A = [int(i) for i in input().split()] beans = K * N needs = sum(A) remind = beans - needs if remind >= 0: print(remind) else: print(-1)