题解列表

筛选

2^k进制数-题解(Python代码)

摘要:解题思路:注意事项:参考代码:def ck(m):    result=1    for i in range(1,m+1):        result*=i    return resultdef……