题解列表
1159基础解法(Python)
摘要:解题思路:滑动区间的思想即可注意事项:注意解题的限制参考代码:import sysfor data in sys.stdin : a, b = map(int, data.split()) ……
蓝桥杯2020年第十一届省赛真题-整除序列
摘要:## 一定要使用Long long
```c++
#include
using namespace std;
int main()
{
long long n;
c……
不重复地输出数:双指针+qsort
摘要:### 快排+双指针去重
```c++
#include
#include
using namespace std;
int cmp(const void*a,const void*b)
……
蓝桥杯2021年第十二届国赛真题-大写
摘要:## C++中的string
```c++
#include
int main()
{
std::string A;
std::getline(std::cin, A)……
2001: 边长判断
摘要:## if判断
```c++
#include
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
……