k, n, f = map(int, input().split()) a = list(map(int, input().split())) result = k * n for i in a: result -= i print(result if result >= 0 else -1)