小南解题--纸张尺寸--58ms
摘要:zgn946 13:48 2022/6/12省赛时写的--小南'''for i in range(9): d=[max(b,c)//2,min(b,c)] d.s……
就是通过分支选择来写
摘要:解题思路:注意事项:“整数”还有一个长边和短边的顺序好像也要调整一下参考代码:def inchjudge1(n): lside=1189 #初始设置边长 rside=841 ……
二维列表+Python特性
摘要:解题思路:获取下标,找到对应的已经存好地数据注意事项:A0——A9是10个数,向下取整可直接用int()参考代码:s=int(input()[1])
m,n=1189,841
result=[]
……
蓝桥杯2022年第十三届省赛真题-纸张尺寸
摘要:解题思路:看注释注意事项:看注释参考代码:a = ["A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9"]
n =&n
纸张尺寸——python
摘要:解题思路:注意事项:参考代码:n = input()a,b = 1189,841for i in range(int(n[1])): a,b = b,a//2 print(a)print(b)……
2680: 蓝桥杯2022年第十三届省赛真题-纸张尺寸
摘要:解题思路:只用考虑输入的0~9这几个数,做循环就行注意事项:参考代码:name = input()
num = int(name[1]) #只看A后面的数
l=1189 #长
w=8……
蓝桥杯2022年第十三届省赛真题-纸张尺寸
摘要:解题思路:注意事项:参考代码:a=input()k=int(a[1])long=1189width=841temp=0i=0while(i!=k): long=long//2 if wid……
.......................
摘要:解题思路:注意事项:参考代码: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……