K, N, F = map(int, input().split()) An = list(map(int, input().split())) if K*N >= sum(An): print(K*N-sum(An)) else: print('-1')