编写题解 2072: [STL训练]寻梦 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): strg_1=input() strg_2=input().strip() …… 题解列表 2022年03月16日 0 点赞 0 评论 299 浏览 评分:9.9
编写题解 2071: [STL训练]壮志难酬 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): a,b=map(str,input().split()) print(a[a.f…… 题解列表 2022年03月16日 0 点赞 0 评论 328 浏览 评分:0.0
1446: 蓝桥杯2013年第四届真题-核桃的数量 摘要:解题思路:注意事项:参考代码:a, b, c = map(int, input().split()) i = 0 while True: i += 1 su = max(a, …… 题解列表 2022年03月16日 0 点赞 0 评论 222 浏览 评分:9.9
阶乘求和初学 摘要:解题思路:注意事项:参考代码:n=int(input())list1=[]b=1for i in range(1,n+1): b=b*i list1.append(b)print(sum(…… 题解列表 2022年03月16日 0 点赞 0 评论 172 浏览 评分:0.0
2267: 蓝桥杯2016年第七届真题-取球博弈(3.15) 摘要:解题思路:方法:记忆化递归注意事项:这居然是简单题,我真是无语了,被摁在地上摩擦,刚开始想了半天怎么转尼姆博弈,最后还是放弃了,参考了网上的其它语言代码写了python版和详细注释参考代码:def p…… 题解列表 2022年03月15日 0 点赞 0 评论 761 浏览 评分:9.9
蓝桥杯2020年第十一届省赛真题-成绩统计 摘要:解题思路:注意事项:参考代码:n=int(input()) county=0 countj=0 for i in range(1,n+1): a=int(input()) i…… 题解列表 2022年03月15日 0 点赞 0 评论 338 浏览 评分:0.0
编写题解 2070: [STL训练]Mispelling4 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): a,b=map(str,input().split()) print(i+1,b…… 题解列表 2022年03月15日 0 点赞 0 评论 201 浏览 评分:0.0
编写题解 2065: [STL训练]{A} + {B} 摘要:解题思路:注意事项:参考代码:while True: try: n,m=map(int,input().split()) r=list(map(int,i…… 题解列表 2022年03月15日 0 点赞 0 评论 283 浏览 评分:0.0
编写题解 2052: 整除问题 摘要:解题思路:注意事项:参考代码:n=int(input()) s = 0 for i in range(2,n//2+1): if n%i==0: s += 1 pr…… 题解列表 2022年03月15日 0 点赞 0 评论 469 浏览 评分:0.0
编写题解 2042: 杨辉三角 摘要:解题思路:注意事项:参考代码:m,n=map(int,input().split()) if m<=0: pass else: ls=[[1]] for …… 题解列表 2022年03月15日 0 点赞 0 评论 435 浏览 评分:9.9