题解列表
蓝桥杯基础练习VIP-Huffuman树Python版
摘要:解题思路:注意事项:参考代码:#蓝桥杯基础练习VIP-Huffuman树Python版
n=int(input())
A=list(map(int,input().strip().split())……
蓝桥杯基础练习VIP-报时助手Python版
摘要:解题思路:注意事项:参考代码:#蓝桥杯基础练习VIP-报时助手Python版
H=['zero','one','two','three'……
蓝桥杯2017年第八届真题-k倍区间 巧妙的结算
摘要:参考了别人的题解
```cpp
#include
using namespace std;
int n,k;
long long num[100005];//注意long long不然范围不……
蓝桥杯2018年第九届真题-螺旋折线pyhton
摘要:思路来源:https://www.bilibili.com/video/BV1dD4y1m7Cv?share_source=copy_web
x,y = map(int,input().……
编写题解 1138: C语言训练-求矩阵的两对角线上的元素之和
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10][10]; int n; int ……
编写题解 1139: C语言训练-求素数问题
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; for(int i=2……
编写题解 1142: C语言训练-立方和不等式
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int sum = 0; int k ……
蓝桥杯2020年第十一届省赛真题-分类计数
摘要:```c
//#define _CRT_SECURE_NO_WARNINGS
#include
#include
#include
int main() {
char c;
int ……
1094: 字符串的输入输出处理 (简单 易理解 暴力 直接)
摘要: 很神奇的一道题目,我在测试的时候输出的格式中间多了一个换行,我改了半天,一直格式错误,到最后发现,在网页中代码运行会吃掉那个换行,也就是说在eclipse中运行中多一个换行是没有问题的。
对于代……