汽水瓶(python代码) 摘要:def printf(x): total = 0 c = x//3 total = total+c d = x%3 x = d+c   题解列表 2023年01月16日 0 点赞 0 评论 245 浏览 评分:0.0
蓝桥杯历届试题-回文数字 摘要:解题思路:注意事项:不知道为什么答案错误67,有大佬能解答一下吗参考代码:n=int(input())l=[0 for _ in range(100)]tmp=1for i in range(1,10…… 题解列表 2023年01月16日 0 点赞 0 评论 346 浏览 评分:0.0
最大子矩阵(线段树题解) 摘要:~~~ /*先分析复杂度,n^2*m^2 的复杂度明显超过1e8,所以想想二分/线段树/双指针解法,本题中先枚举n^2,非常小,先假设固定上下端点,再枚举列,判断每一列的最大最小值,然后运用线段树维…… 题解列表 2023年01月16日 1 点赞 0 评论 1096 浏览 评分:9.9
输出M到N的数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,m,n; scanf("%d%d",&m,&n); if(m<n) …… 题解列表 2023年01月16日 0 点赞 0 评论 593 浏览 评分:0.0
1003: [编程入门]密码破译 摘要:解题思路:谢邀,这道入门难住我了注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int i; c…… 题解列表 2023年01月16日 0 点赞 0 评论 359 浏览 评分:0.0
2181: 信息学奥赛一本通T1005-地球人口承载力估计 摘要:```cpp #include #include using namespace std; int main() { float x,a,y,b,n; cin>>x>>a…… 题解列表 2023年01月16日 2 点赞 0 评论 1242 浏览 评分:9.9
1561: 蓝桥杯算法提高VIP-计算质因子 摘要:```cpp #include using namespace std; int check(int num) { bool flag=true; if(num==1) …… 题解列表 2023年01月16日 1 点赞 0 评论 413 浏览 评分:9.9
2005: 去除空格 摘要:```cpp #include using namespace std; int main() { string s; getline(cin,s); int p…… 题解列表 2023年01月16日 1 点赞 0 评论 460 浏览 评分:9.9
1470: 蓝桥杯基础练习VIP-时间转换 摘要:```cpp #include using namespace std; int main() { int t,h,m,s; cin>>t; h=t/3600; …… 题解列表 2023年01月16日 0 点赞 0 评论 532 浏览 评分:9.9