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