2024年第十五届省赛真题-R 格式 摘要:#include<stdio.h>#include<string.h>intcnt=0;inta[100…… 题解列表 2025年02月20日 12 点赞 0 评论 2534 浏览 评分:10.0
比较容易理解的代码 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[105][105];void move(int &x…… 题解列表 2025年02月20日 0 点赞 0 评论 256 浏览 评分:0.0
蓝桥杯2016年第七届真题-路径之谜dfs 摘要:```cpp#includeusing namespace std;const int N=30;int n;int a[N],b[N];//西和北方向上的箭数 注意先西再北…… 题解列表 2025年02月20日 1 点赞 0 评论 306 浏览 评分:10.0
分数线划定 摘要:```cpp#include #include using namespace std;struct interviewer{ int number; int score;…… 题解列表 2025年02月20日 0 点赞 0 评论 201 浏览 评分:0.0
矩形面积交 摘要:解题思路:通过画图可知,两矩形的边的表示方法注意事项:参考代码:a = list(map(float, input().split()))b = list(map(float, input().spl…… 题解列表 2025年02月20日 0 点赞 0 评论 123 浏览 评分:0.0
菲暃要加油——陶陶摘苹果(4行解决) 摘要:解题思路:引入python自带的 bisect库,可以很快的解决这个问题注意事项:用的是bisect_right函数参考代码:importbisectl=sorted(list(map…… 题解列表 2025年02月20日 1 点赞 0 评论 415 浏览 评分:10.0
菲暃要加油——蛇行矩阵 摘要:解题思路:注意事项:参考代码:n=int(input())l=[[]foriinrange(n)]k=1foriin…… 题解列表 2025年02月20日 0 点赞 0 评论 168 浏览 评分:0.0
复习观看wwwwwwwwwwwwwww 摘要:#include#include#include#include#include#includeusing namespace std;int main(){ in…… 题解列表 2025年02月20日 0 点赞 0 评论 99 浏览 评分:0.0
有坑,a后面的数还要输出 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;const int t=1e6;int a[t],b[t]={0};void a…… 题解列表 2025年02月20日 0 点赞 0 评论 111 浏览 评分:0.0
ASCII字符和数字之间的转换 摘要:解题思路: 在 C 语言中,字符常量可以直接作为整数参与运算,因为它在内存中存储的就是对应的 ASCII 码值。同样,一个整数也可以作为字符…… 题解列表 2025年02月20日 2 点赞 0 评论 434 浏览 评分:0.0