题解列表

筛选

蛇行矩阵题解

摘要:解题思路:注意事项:参考代码:'''思路:先求出第一行后面就是a[i][j] = a[i-1][j+1]-1'''def dyh(n):    a = ……

编写题解 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()  ……

阶乘求和初学

摘要:解题思路:注意事项:参考代码:n=int(input())list1=[]b=1for i in range(1,n+1):    b=b*i    list1.append(b)print(sum(……

2267: 蓝桥杯2016年第七届真题-取球博弈(3.15)

摘要:解题思路:方法:记忆化递归注意事项:这居然是简单题,我真是无语了,被摁在地上摩擦,刚开始想了半天怎么转尼姆博弈,最后还是放弃了,参考了网上的其它语言代码写了python版和详细注释参考代码:def p……