题解列表
以b数组当中间值,二分解决
摘要:解题思路:注意事项:参考代码:n=int(input())a=[0]+list(map(int,input().split()))b=[0]+list(map(int,input().split())……
Fibonacci数列——递归
摘要:解题思路:注意事项:参考代码:def fb(n): if n == 1 or n == 2: return 1 else: return fb(n-1)+fb(……
逆序数——python
摘要:解题思路:注意事项:参考代码:n = int(input())L = list(map(int,input().split()))s = 0while len(L)>1: a = L[0] ……
利用列表内置函数解决
摘要:解题思路:利用list函数count注意事项:参考代码:times = int(input())s = []for i in range(times): s += [j for j in map……
题解 1095: The 3n + 1 problem
摘要:解题思路:注意事项:还得先比较输入的两个数的大小!!!参考代码#include<stdio.h>
int main()
{
int a,b,m,n,j,temp;
int su……
简单思路,附有注释,通俗易懂
摘要:```java
//package 蓝桥杯2022年第十三届决赛真题;
import java.util.Scanner;
public class Main {
private s……
nxn矩阵的两对角线上的元素之和
摘要:解题思路:对于nxn级矩阵求对角线的和,实际是选取主对角线及下标和为n-1的数组和同时减去中心数组的值注意事项:参考代码:#include<iostream>
using namespace std……