蓝桥杯基础练习VIP-回形取数-题解(Python代码)100分过了,真是鸡贼的测试用例 摘要:```python n,m=map(int,input().split()) dp=[list(map(int,input().split())) for _ in range(n)] i=0 …… 题解列表 2020年10月04日 1 点赞 4 评论 1064 浏览 评分:9.9
话费计算-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ double a; cin>>a; cout.…… 题解列表 2020年10月04日 0 点赞 0 评论 1447 浏览 评分:8.4
话费计算-题解(C语言代码) 摘要:```c #include int main(){ double a=0.0; scanf("%lf",&a); printf("%.1lf",50+a*0.4);…… 题解列表 2020年10月04日 0 点赞 2 评论 1096 浏览 评分:8.0
[竞赛入门]简单的a+b-题解(C语言代码) 摘要:```c #include void main() { int a,b; while(scanf("%d%d",&a,&b)!=EOF) printf("%d\n",a+b); }…… 题解列表 2020年10月04日 0 点赞 0 评论 293 浏览 评分:0.0
蓝桥杯2014年第五届真题-分糖果-题解(C++代码) 摘要:解题思路:用一个数组存储各个学生手中糖果的初始数量 用for循环对每个同学手中的糖果进行自身减半同时加上右边同学手中糖果的一半。fun()函数是用来判断数组中的元素是否完全相等注意事项:在计算最后一个…… 题解列表 2020年10月04日 0 点赞 0 评论 738 浏览 评分:0.0
蓝桥杯算法提高VIP-输出正反三角形-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include"iostream"using namespace std;int main(){ int x,y; int a,b,c,d; int i,j; cin>…… 题解列表 2020年10月04日 0 点赞 0 评论 303 浏览 评分:0.0
数据结构-链表的基本操作-题解(C语言代码) 摘要:```c #include #include #include typedef struct LinkNode { int data; struct LinkNode* …… 题解列表 2020年10月04日 0 点赞 0 评论 557 浏览 评分:0.0
蓝桥杯2014年第五届真题-兰顿蚂蚁-题解(C++代码) 摘要:解题思路:逐个遍历 注意事项: 注意初始状态头的朝向参考代码:…… 题解列表 2020年10月04日 0 点赞 2 评论 258 浏览 评分:6.0
蓝桥杯2013年第四届真题-买不到的数目-题解(Java代码) 摘要:解题思路:注意事项:随机获取值时,可用map(数据类型,input().split()). 列如:a,b=(int,input().split()) …… 题解列表 2020年10月04日 0 点赞 0 评论 558 浏览 评分:9.9
蓝桥杯算法提高VIP-复数求和-题解(C语言代码) 摘要:```c #include #include typedef struct fushu { int shi; int xu; struct fushu* next…… 题解列表 2020年10月04日 0 点赞 0 评论 422 浏览 评分:0.0