题解列表
编写题解 2074: [STL训练]A+B
摘要:解题思路:注意事项:参考代码:while True:
try:
a,b=map(str,input().split())
print(int(a.repl……
编写题解 2073: [STL训练]亲和串
摘要:解题思路:注意事项:参考代码:while True:
try:
a=input().strip()
b=input().strip()
……
Python斐波拉契---本题python无解
摘要:解题思路: 事先说明,本题还没有其他人提供python解法,我也没能解决,这个参考代码不能正确通过题目。 本题有以下几个难点需要解决: &nbs
编写题解 2072: [STL训练]寻梦
摘要:解题思路:注意事项:参考代码:n=int(input())
for i in range(n):
strg_1=input()
strg_2=input().strip()
……
编写题解 2071: [STL训练]壮志难酬
摘要:解题思路:注意事项:参考代码:n=int(input())
for i in range(n):
a,b=map(str,input().split())
print(a[a.f……
1446: 蓝桥杯2013年第四届真题-核桃的数量
摘要:解题思路:注意事项:参考代码:a, b, c = map(int, input().split())
i = 0
while True:
i += 1
su = max(a, ……
2267: 蓝桥杯2016年第七届真题-取球博弈(3.15)
摘要:解题思路:方法:记忆化递归注意事项:这居然是简单题,我真是无语了,被摁在地上摩擦,刚开始想了半天怎么转尼姆博弈,最后还是放弃了,参考了网上的其它语言代码写了python版和详细注释参考代码:def p……
蓝桥杯2020年第十一届省赛真题-成绩统计
摘要:解题思路:注意事项:参考代码:n=int(input())
county=0
countj=0
for i in range(1,n+1):
a=int(input())
i……