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