N, K, F = map(int, input().split()) s = sum(map(int, input().split())) ans = -1 if N * K < s else N * K - s print(ans)