k, n, f = list(map(int, input().split(' '))) ages = sum(list(map(int, input().split(' ')))) beans = k * n if beans < ages: print(-1) else: print(beans - ages)