#No.143 http://yukicoder.me/problems/361 k, n, f = list(map(int, input().split())) ageList = list(map(int, input().split())) amount = 0 for age in ageList: amount += age sum = k * n if sum < amount: print(-1) else : print(sum - amount)