蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:注意事项:参考代码:s = input().strip()n = int(s[1])a = 1189b = 841for i in range(n): a = a//2 if a…… 题解列表 2024年08月12日 1 点赞 0 评论 148 浏览 评分:0.0
纸张尺寸,递归解决(python) 摘要: lw函数矫正当前长宽 cal函数递归解决,An就是重复折叠n次,n=0时结束 ``` def lw(l,w): return max(l,w),min(l,w) de…… 题解列表 2024年04月12日 0 点赞 0 评论 179 浏览 评分:9.9
省赛真题-纸张尺寸o_O 摘要:解题思路:注意事项:参考代码:size=input()a=int(size[1])length=1189width=841for i in range(a): length=length//2 …… 题解列表 2024年02月18日 0 点赞 0 评论 82 浏览 评分:0.0
纸张尺寸(python硬核解法) 摘要:解题思路:给定了初始纸张的尺寸,后面按照思路一步一步来就行,直接看注释参考代码:import math #因为题目要求向下取整,所以要导入math模块 p = list(input()) …… 题解列表 2023年12月13日 0 点赞 0 评论 115 浏览 评分:0.0
....................... 摘要:解题思路:注意事项:参考代码:l={0:[1189,841]}for i in range(1,10): l[i]=[l[i-1][1],l[i-1][0]//2]n=int(input()[1…… 题解列表 2023年11月07日 0 点赞 0 评论 90 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:注意事项:参考代码:a=input()k=int(a[1])long=1189width=841temp=0i=0while(i!=k): long=long//2 if wid…… 题解列表 2023年04月06日 0 点赞 0 评论 461 浏览 评分:8.4
2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:只用考虑输入的0~9这几个数,做循环就行注意事项:参考代码:name = input() num = int(name[1]) #只看A后面的数 l=1189 #长 w=8…… 题解列表 2023年04月03日 0 点赞 4 评论 636 浏览 评分:9.9
纸张尺寸——python 摘要:解题思路:注意事项:参考代码:n = input()a,b = 1189,841for i in range(int(n[1])): a,b = b,a//2 print(a)print(b)…… 题解列表 2023年04月02日 0 点赞 0 评论 111 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-纸张尺寸 摘要:解题思路:看注释注意事项:看注释参考代码:a = ["A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9"] n =&n 题解列表 2023年03月18日 0 点赞 0 评论 605 浏览 评分:9.0
解决纸张尺寸问题 摘要:解题思路:使用列表存储两个长短边的信息,根据用户输入的尺寸,判断长短边(要判断输出的长短边信息,要先输出长边)参考代码:long=[] short=[] s=int(input().strip()…… 题解列表 2023年03月10日 0 点赞 0 评论 653 浏览 评分:9.5