K, N, F = list(map(int,input().split())) ReqOfMame = 0 A = list(map(int,input().split())) for i in range(F): ReqOfMame += A[i] if K * N - ReqOfMame < 0: print(-1) else: print(K * N - ReqOfMame)