# coding: utf-8 k, n, f = map(int,input().split()) A = list(map(int,input().split())) m = k * n flg = True for i in range(f): m -= A[i] if m < 0: flg = False if flg: print(m) else: print(-1)