K,N,F = map(int,raw_input().split()) A = map(int,raw_input().split()) n = K * N for i in A: n -= i if n >= 0: print n else: print -1