k, n, f = map(int, input().split()) a = map(int, input().split()) ans = max(-1, k * n - sum(a)) print(ans)