题解列表

筛选

python二分答案

摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())a=list(map(int,input().split()))b=list(map(int,input().sp……
优质题解

2997: 梯形面积

摘要:**在梯形中阴影部分面积是150平方厘米,求梯形面积。** ![](/image_editor_upload/20230322/20230322070716_51796.png) **众所周知……

1738: 排序(c++代码)

摘要:sort函数直接排,真不错 ```cpp #include #include using namespace std; int main() { int n; whil……

2836 数组逆序重放 (C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n;    int a[100];    scanf("%d",&n);    int i;   ……

【蓝桥杯】分巧克力--二分查找

摘要:解题思路:注意事项:参考代码://分巧克力问题--标准的二分模板题 //判断条件以及二分上下界  #include <bits/stdc++.h> using namespace std; c……