K,N,F = map(int,input().split()) s = sum(map(int,input().split())) r = K*N - s if r < 0: r = -1 print(r)