整除的尾数-题解(Python代码) 摘要:```python while True: ipt = input().split() m = int(ipt[0]) n = int(ipt[1]) if …… 题解列表 2020年03月24日 0 点赞 0 评论 873 浏览 评分: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 评论 718 浏览 评分:9.5
数列排序-题解(Python代码) 摘要:```python num = int(input()) while num > 0: ipt = input().split() # 创建列表list1,用于存放排序后的元素 …… 题解列表 2020年03月24日 0 点赞 0 评论 1022 浏览 评分:0.0
排列-题解(Python代码) 摘要:```python import itertools count = int(input()) while count > 0: ipt = input() # 每个数字之间有一个…… 题解列表 2020年03月24日 0 点赞 1 评论 1005 浏览 评分:9.9
字符排列问题-题解(Python代码) 摘要:全排列的算法自己想了很久都没有想出来,所以就搜索了一下具体实现。原来python只要导入包就可以实现。 抽时间还是理解一下具体实现方法 ```python # 导入相关包 import i…… 题解列表 2020年03月24日 0 点赞 0 评论 633 浏览 评分:0.0
密码截获 (Python代码) 摘要:```python # 判断一个字符串是否为回文 def func(str1): length = len(str1) str2 = "" for i in rang…… 题解列表 2020年03月24日 0 点赞 0 评论 1027 浏览 评分:9.9
蓝桥杯算法训练VIP-反置数-题解(Python代码)python 开荒柘 两行! 摘要:```python base=[i for i in input().split()] print(int(str(int(base[0][::-1])+int(base[1][::-1]))[:…… 题解列表 2020年03月24日 0 点赞 0 评论 999 浏览 评分:6.0
蓝桥杯算法训练VIP-友好数-题解(Python代码)py开荒柘 摘要:```python base=[int(i) for i in input().split()] a,b=base[0],base[1] def ap_num(n): re=[] rat…… 题解列表 2020年03月24日 0 点赞 0 评论 750 浏览 评分:6.7
恺撒密码-题解(Python代码) 摘要:```python while True: start = input() if start == 'ENDOFINPUT': break if st…… 题解列表 2020年03月24日 0 点赞 0 评论 709 浏览 评分:0.0
蓝桥杯算法训练VIP-确定元音字母位置-题解(Python代码) 摘要:```python s = input() for i in range(len(s)): if s[i].lower() in ['a','e','i','o','u']: …… 题解列表 2020年03月24日 0 点赞 0 评论 1127 浏览 评分:9.9