#!/usr/bin/python K, N, _ = map(int, raw_input().split()) summa = sum(map(int, raw_input().split())) res = K * N - summa print -1 if res < 0 else res