def main(): a, b, c = map(int, input().split()) print(max(-1, a*b-sum(map(int, input().split())))) if __name__ == '__main__': main()