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