k, n , f = map(int, input().split()) ages = list(map(int, input().split())) total_beans = k * n for i in range(f): total_beans -= ages[i] if total_beans < 0: print('-1') else: print(total_beans)