题解列表

筛选

排列-题解(Python代码)

摘要:```python import itertools count = int(input()) while count > 0: ipt = input() # 每个数字之间有一个……

连环阵-题解(C++代码)

摘要:# 连环阵 ## 题目链接: [https://www.dotcpp.com/oj/problem2111.html](https://www.dotcpp.com/oj/problem2……

数列排序-题解(Python代码)

摘要:```python num = int(input()) while num > 0: ipt = input().split() # 创建列表list1,用于存放排序后的元素 ……

敲七游戏-题解(Python代码)

摘要:```python num = int(input()) count = 0 for i in range(2, num + 1): # 如果i能被7整除,则count+1并跳过本次循环……