蓝桥杯2021年第十二届省赛真题-最少砝码(Python) 摘要:解题思路: 没有Python就写一下吧 思路参考C优质题解注意事项:参考代码:n = int(input())cnt = 1weight = 1total = 1while total<n: c…… 题解列表 2022年04月02日 0 点赞 0 评论 413 浏览 评分:2.0
蓝桥杯2021年第十二届省赛真题-最少砝码python【刀卷云】 摘要:解题思路:每次增加砝码,在之前的基础上最大化新增测量范围注意事项:本思路通过逻辑经过计算,关于l,w,r的值也可以通过观察规律计算参考代码:n=int(input()) l=1#新增范围的左边界(初…… 题解列表 2022年04月08日 0 点赞 0 评论 395 浏览 评分:9.9
小南解题-最少砝码--182ms 摘要:'''2022年03月20日 21:07:13.901zgn946'''#规律:n=3n+1 a=int(input())cn=0sum=0while …… 题解列表 2022年06月01日 0 点赞 0 评论 140 浏览 评分:4.0
python drgrregrg 摘要:解题思路:注意事项:参考代码:n = int(input())c, w ,t = 1, 1, 1while t < n: c += 1 w = 3*w t += w print…… 题解列表 2024年03月30日 0 点赞 0 评论 78 浏览 评分:0.0