蓝桥杯2018年第九届真题-螺旋折线pyhton 思路来源:https://www.bilibili.com/video/BV1dD4y1m7Cv?share_source=copy_webx,y=map(int,input().split())count=max(abs(x),abs(y))#点所在方形层数由x, 题解列表 2022年03月27日 0 点赞 0 评论 727 浏览 评分:9.9
蓝桥杯2017年第八届真题-k倍区间 巧妙的结算 参考了别人的题解```cpp#includeusingnamespacestd;intn,k;longlongnum[100005];//注意longlong不然范围不够!!!intcnt[100005];longlongans;//这里也是!!!intmain(){cin>>n>>k;for(int 题解列表 2022年03月27日 0 点赞 0 评论 734 浏览 评分:9.9
蓝桥杯基础练习VIP-报时助手Python版 摘要:解题思路:注意事项:参考代码:#蓝桥杯基础练习VIP-报时助手Python版 H=['zero','one','two','three'…… 题解列表 2022年03月26日 0 点赞 0 评论 583 浏览 评分:8.0
蓝桥杯基础练习VIP-Huffuman树Python版 解题思路:注意事项:参考代码:#蓝桥杯基础练习VIP-Huffuman树Python版n=int(input())A=list(map(int,input().strip().split()))S=[]iflen(A)==1:S=Awhilelen(A)!=1:A.sort(reverse=True) 题解列表 2022年03月26日 0 点赞 0 评论 557 浏览 评分:7.0
九九乘法表 摘要:解题思路:注意事项:原样输出的语句,直接复制粘贴就不会出错。尤其不要忘了最后一行输出。然后,就是九九乘法表的结果样式,每个数字右对齐。参考代码:#include<stdio.h>#include<ma…… 题解列表 2022年03月26日 0 点赞 1 评论 882 浏览 评分:9.9
编写题解 1141: C语言训练-百钱百鸡问题 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ for(int i=0;i<100;i++){ f…… 题解列表 2022年03月26日 0 点赞 0 评论 569 浏览 评分:0.0
不好意思,直接输出了 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<"95959"<<endl; return 0…… 题解列表 2022年03月26日 0 点赞 0 评论 563 浏览 评分:0.0
编写题解 1126: C语言训练-字符串正反连接 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ string str; cin>>str; cout…… 题解列表 2022年03月26日 0 点赞 0 评论 606 浏览 评分:0.0
编写题解 1051: [编程入门]结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ string id; string name; …… 题解列表 2022年03月26日 0 点赞 0 评论 568 浏览 评分:0.0
2108: 抢夺资源 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; while(scanf("%d%d",&n,&m)!=EOF) { if(n%(m+1)…… 题解列表 2022年03月26日 0 点赞 0 评论 470 浏览 评分:0.0