K,N,S = map(int,input().split()) #K :粒/袋 N :袋の数 S :家族の人数 *Age, = map(int,input().split()) if K * N >= sum(Age): print(K*N - sum(Age)) else: print(-1)