K,N,F = map(int, input().split()) mame_cnt = sum((map(int, input().split()))) cnt = K * N if cnt >= mame_cnt: print(cnt - mame_cnt) else: print("-1")