#include #include #include #include #include int main(){ int K,N,F; std::vector A; std::cin >> K >> N >> F; A.reserve(F); std::copy_n(std::istream_iterator(std::cin),F,std::back_inserter(A)); std::cout << std::max(-1,K*N - std::accumulate(A.begin(),A.end(),0)) << std::endl; return 0; }