二级C语言-等差数列 摘要:参考代码:#include<stdio.h>int main(){ int n; int i = 1; int sum = 0; scanf("%d",&n); …… 题解列表 2024年03月28日 0 点赞 0 评论 263 浏览 评分:9.9
嗨嗨嗨,来了喔! 摘要:解题思路:看代码注意事项:参考代码:#include <bits/stdc++.h>using namespace std;bool panduan(int n,int a[],int m){ for…… 题解列表 2024年03月28日 0 点赞 0 评论 225 浏览 评分:0.0
2880: 计算鞍点 摘要:参考代码:arr, arr2 = [], [] for _ in range(5): p1 = list(map(int, input().split())) arr.appen…… 题解列表 2024年03月28日 0 点赞 0 评论 589 浏览 评分:0.0
小白操作解决病历单 摘要:解题思路:无注意事项:101参考代码:c=input()b=[]d=""for i in c: if 'a' <= i <= 'z': …… 题解列表 2024年03月28日 1 点赞 0 评论 268 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-求和(C++解法) 摘要:解题思路:参考大佬题解,相当于运用了数学思维注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,…… 题解列表 2024年03月28日 0 点赞 0 评论 571 浏览 评分:8.0
2876: 矩阵交换行 摘要:解题思路:注意事项:参考代码:arr = [] for _ in range(5): p1 = input().split() arr.append(p1) m, n = ma…… 题解列表 2024年03月28日 0 点赞 0 评论 454 浏览 评分:0.0
遍历(简单易懂) 摘要:解题思路:题目要求计算出这个 01 串中出现互不重叠的 00 和 11 子串最多,输出子串个数,因为“?”既可以当成“0”也可以当成“1”所以“?”必然可以和后一个字符组成满足要求的子串(相当于万能符…… 题解列表 2024年03月28日 0 点赞 0 评论 320 浏览 评分:0.0
信息学奥赛一本通T1330-最少步数 摘要:解题思路:BFS注意事项:参考代码:#include<iostream> #include<queue> #include<cstring> using namespace std; cons…… 题解列表 2024年03月28日 0 点赞 0 评论 291 浏览 评分:9.9
信息学奥赛一本通T1329-细胞 摘要:解题思路:BFS注意事项:参考代码:#include<iostream> #include<queue> using namespace std; const int N = 1e3 +10;…… 题解列表 2024年03月28日 0 点赞 0 评论 269 浏览 评分:9.9
1445: 蓝桥杯历届试题-最大子阵 摘要: #include using namespace std; int n,m,ans=-5005,sum; int a[505][505]; int pr…… 题解列表 2024年03月28日 0 点赞 0 评论 319 浏览 评分:0.0