题解列表

筛选

枚举-时间复杂度N

摘要:解题思路:就是枚举加上一个二分注意事项:参考代码:num=eval(input())list1=list(map(int,input().split()))list2=sorted(list1)res……

编写题解 1171: 蟠桃记

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a, sum, j; sum = 1, j = 0; while (scanf("%……

2961: 最长单词2

摘要:```cpp #include using namespace std; int main() { int x,max=0,q,p; char ch[500]; ……