题解列表

筛选

2876: 矩阵交换行

摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){    int n,m;    for(int ……

2997: 梯形面积

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){    float s = (15+2……

小题不必大做

摘要:解题思路:小题不必大做注意事项:参考代码:a, b, c = input().split() list1 = [a, b, c] print(max(list1))……

蓝桥杯2023年第十四届省赛真题-子串简写

摘要:解题思路:观察题目可以发现,我们发现第i个是c2可以组成的子串数量[0,i-k]这个区间内c1的数量,所有我们只需要找到每个c2(假设下标为i)[0,i-k]这个区间内c1的数量就可以得到答案。但是观……

梯形面积(无聊刷题)

摘要:解题思路:  没啥好说的  写不对就自杀吧注意事项:   参考代码:#include<iostream> using namespace std; const float sh=15,xia=25……