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