敲七游戏-题解(Python代码) 摘要:```python num = int(input()) count = 0 for i in range(2, num + 1): # 如果i能被7整除,则count+1并跳过本次循环…… 题解列表 2020年03月24日 0 点赞 0 评论 2168 浏览 评分:9.9
蓝桥杯算法提高VIP-3000米排名预测-题解(C++代码)---求出全部排列,逐个判断 摘要:解题思路: 1.**枚举全部排名的排列:**分别对每个排列进行判断 2**.每个排列判断方法是:**m个人说了m句话,该排列必须符合这全部的m句话,如果违反其中一句,就直接判错。 3**.判断是…… 题解列表 2020年03月24日 0 点赞 3 评论 1005 浏览 评分:9.9
整除的尾数-题解(Python代码) 摘要:```python while True: ipt = input().split() m = int(ipt[0]) n = int(ipt[1]) if …… 题解列表 2020年03月24日 0 点赞 0 评论 1046 浏览 评分:0.0
数字统计-题解(Python代码) 摘要:```python num = int(input()) list1 = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] for i in range(1, num + 1): …… 题解列表 2020年03月24日 0 点赞 0 评论 847 浏览 评分:9.5
优质题解 决战拼接-题解(C++代码)(超详细。。应该很详细了) 摘要:# 决战拼接 ## 题目链接: [https://www.dotcpp.com/oj/problem2112.html](https://www.dotcpp.com/oj/problem…… 题解列表 2020年03月24日 0 点赞 0 评论 1964 浏览 评分:9.9
数列排序-题解(Python代码) 摘要:```python num = int(input()) while num > 0: ipt = input().split() # 创建列表list1,用于存放排序后的元素 …… 题解列表 2020年03月24日 0 点赞 0 评论 1222 浏览 评分:0.0
连环阵-题解(C++代码) 摘要:# 连环阵 ## 题目链接: [https://www.dotcpp.com/oj/problem2111.html](https://www.dotcpp.com/oj/problem2…… 题解列表 2020年03月24日 0 点赞 0 评论 930 浏览 评分:9.9
排列-题解(Python代码) 摘要:```python import itertools count = int(input()) while count > 0: ipt = input() # 每个数字之间有一个…… 题解列表 2020年03月24日 0 点赞 1 评论 1186 浏览 评分:9.9
C语言训练-"水仙花数"问题2-题解(C语言代码) 摘要:```c #include #include int main() { int b,c,j,sum; for(j=100;j…… 题解列表 2020年03月24日 0 点赞 0 评论 708 浏览 评分:6.0
优质题解 虚张声势-题解(C++代码)(标准化思维) 摘要:## 虚张声势题解 ## 题目链接: [https://www.dotcpp.com/oj/problem2110.html](https://www.dotcpp.com/oj/prob…… 题解列表 2020年03月24日 0 点赞 0 评论 1086 浏览 评分:9.9