网易互娱最后一题,笔试的时候没来得及写,可惜了 from scipy.special import comb if __name__ == '__main__': n, m, k = map(int, input().split()) nn = n mm = m thre = comb(m+n, n) if k > thre: print(-1) else: res = '' for i in range(nn+mm): tmp = comb(m+n-1, n...