k, n, f = map(int, input().split()) l = list(map(int, input().split())) x = k*n - sum(l) if x < 0: print(-1) else: print(x)