利用列表max()函数求最大值 摘要:解题思路:注意事项:参考代码:def m(l): return max(l)l = list(map(float, input().split()))print("%.3f" % m(l))pr…… 题解列表 2024年03月28日 0 点赞 0 评论 483 浏览 评分:9.9
2880: 计算鞍点 摘要:参考代码:arr, arr2 = [], [] for _ in range(5): p1 = list(map(int, input().split())) arr.appen…… 题解列表 2024年03月28日 0 点赞 0 评论 665 浏览 评分:0.0
小白操作解决病历单 摘要:解题思路:无注意事项:101参考代码:c=input()b=[]d=""for i in c: if 'a' <= i <= 'z': …… 题解列表 2024年03月28日 1 点赞 0 评论 343 浏览 评分:0.0
2876: 矩阵交换行 摘要:解题思路:注意事项:参考代码:arr = [] for _ in range(5): p1 = input().split() arr.append(p1) m, n = ma…… 题解列表 2024年03月28日 0 点赞 0 评论 544 浏览 评分:0.0
2874: 行程长度编码 摘要:参考代码:s = input().upper() + " " count = 0 for i in range(len(s) - 1): if s[i] == s[i+1]: …… 题解列表 2024年03月28日 0 点赞 0 评论 475 浏览 评分:0.0
2875: 回文子串 注意时间限制 摘要:参考代码:s = input() + ' ' ans = [] str1 = "" len_1 = 0 len_2 = 0 while len_2 < len(s) // …… 题解列表 2024年03月28日 0 点赞 0 评论 297 浏览 评分:0.0
简单易理解,利用循环解决此题 摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())d=0da=(1,3,5,7,8,10,12)xiao=(4,6,9,11)for i in range(1,…… 题解列表 2024年03月28日 1 点赞 0 评论 340 浏览 评分:9.9
python代码解决问题 摘要:解题思路:注意事项:参考代码:x1,y1,x2,y2,x3,y3,x4,y4=map(int,input().split())s1=(x2-x1)*(y2-y1)+(x4-x3)*(y4-y3)x_l…… 题解列表 2024年03月27日 0 点赞 0 评论 344 浏览 评分:0.0
蓝桥杯算法训练VIP-摆动序列(秒解) 摘要:解题思路: 每一组数只有唯一两种排列方式,先对K内求得长度在2以上的组合数,然后求和后乘2即可。 1&n 题解列表 2024年03月27日 0 点赞 0 评论 396 浏览 评分:9.9
编写题解 2833: 金币,python超简单 摘要:def calculate_coins(days): coins = 0 # 初始化骑士收到的金币总数为0 n = 1 # 初始化每天的金币数量为1 day_coun…… 题解列表 2024年03月27日 0 点赞 0 评论 408 浏览 评分:0.0