#!/usr/bin/env python #coding:utf8 K, N, F = map(int, raw_input().split()) print max(-1, K * N - sum(map(int, raw_input().split())))