k,n,f = map(int,input().split()) a = list(map(int,input().split())) mame = k*n for i in a: mame -= i if mame >= 0: print(mame) else: print(-1)