K, N, F = map(int, raw_input().split(' ')) A = map(int, raw_input().split(' ')) r = K * N - sum(A) if r >= 0: print r else: print -1