K, N, F = map(int, raw_input().split()) remain = K * N for v in map(int, raw_input().split()): remain -= v print remain if remain >= 0 else -1