小白python系列-三个数最大值 摘要:解题思路:小白都能看懂系列=v=参考代码:a,b,c=map(int,input().split())if a>b: if a>c: &…… 题解列表 2025年07月30日 0 点赞 0 评论 147 浏览 评分:0.0
小白python系列-第一个HelloWorld程序 摘要:解题思路:第一个HelloWorld程序参考代码:print("**************************")print("Hello World!"…… 题解列表 2025年07月30日 0 点赞 0 评论 87 浏览 评分:0.0
小白python系列-简单的a+b 摘要:解题思路:简单的a+b注意事项:我将其写成小白都学的会的那种参考代码:while True:try:a,b=map(int,input().strip().split())print(a+b)exce…… 题解列表 2025年07月30日 0 点赞 0 评论 185 浏览 评分:0.0
小白python系列-黄金分割 摘要:解题思路:无注意事项:无参考代码:a=int(input())if a>=20: print("0.61803399")else: &nb…… 题解列表 2025年07月30日 0 点赞 0 评论 40 浏览 评分:0.0
编写题解 3326: 蓝桥杯2025年第十六届省赛真题-最短距离(注释清晰,简单易懂) 摘要:解题思路:对显示器坐标a[]和插座坐标b[]排序后,按顺序配对(第i个显示器连第…… 题解列表 2025年07月30日 0 点赞 1 评论 256 浏览 评分:0.0
9个变量,轻松拿下 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,s,d,f,g,h,…… 题解列表 2025年07月30日 0 点赞 0 评论 53 浏览 评分:10.0
10个变量,轻松拿下 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,s,d,f,g,h,…… 题解列表 2025年07月30日 0 点赞 0 评论 60 浏览 评分:4.0
9个变量,轻松拿下 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,s,d,f,g,h,…… 题解列表 2025年07月30日 1 点赞 0 评论 79 浏览 评分:10.0
公交汽车(完全背包) 摘要:解题思路:完全背包注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constint&nbs…… 题解列表 2025年07月30日 0 点赞 0 评论 46 浏览 评分:0.0
[NOIP2001]装箱问题(01背包) 摘要:解题思路:dp(01背包)注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;constint…… 题解列表 2025年07月30日 0 点赞 0 评论 36 浏览 评分:0.0