编写题解 2074: [STL训练]A+B 摘要:解题思路:注意事项:参考代码:while True: try: a,b=map(str,input().split()) print(int(a.repl…… 题解列表 2022年03月16日 0 点赞 0 评论 616 浏览 评分:9.9
编写题解 2073: [STL训练]亲和串 摘要:解题思路:注意事项:参考代码:while True: try: a=input().strip() b=input().strip() …… 题解列表 2022年03月16日 0 点赞 0 评论 323 浏览 评分:0.0
Python斐波拉契---本题python无解 摘要:解题思路: 事先说明,本题还没有其他人提供python解法,我也没能解决,这个参考代码不能正确通过题目。 本题有以下几个难点需要解决: &nbs 题解列表 2022年03月16日 0 点赞 5 评论 954 浏览 评分:9.0
编写题解 2072: [STL训练]寻梦 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): strg_1=input() strg_2=input().strip() …… 题解列表 2022年03月16日 0 点赞 0 评论 530 浏览 评分: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 评论 575 浏览 评分: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 评论 351 浏览 评分: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 评论 350 浏览 评分:0.0
2267: 蓝桥杯2016年第七届真题-取球博弈(3.15) 摘要:解题思路:方法:记忆化递归注意事项:这居然是简单题,我真是无语了,被摁在地上摩擦,刚开始想了半天怎么转尼姆博弈,最后还是放弃了,参考了网上的其它语言代码写了python版和详细注释参考代码:def p…… 题解列表 2022年03月15日 0 点赞 0 评论 1086 浏览 评分: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 评论 488 浏览 评分: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 评论 459 浏览 评分:0.0