K, N, _ = map(int, input().split()) A = list(map(int, input().split())) rest = K * N - sum(A) print(-1 if rest < 0 else rest)