# -*- coding: utf-8 -*- K, N, F = map(int, raw_input().split()) Total = sum(map(int, raw_input().split())) Mame = K * N - Total if Mame < 0: print -1 else: print Mame