K,N,F = map(int,input().split()) age = list(map(int,input().split())) mame = K*N for i in age: mame -= i print(mame) if mame>=0 else print(-1)