1575: 蓝桥杯算法提高VIP-递归倒置字符数组 摘要:解题思路:注意事项:参考代码:t,string=map(str,input().split()) if t=='1': print() print(string)…… 题解列表 2022年04月22日 0 点赞 0 评论 367 浏览 评分:0.0
没啥亮点,正常思路.. 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,i,j,cnt=0; scanf("%d",&n); for(i=7;i<=n;…… 题解列表 2022年04月22日 0 点赞 0 评论 314 浏览 评分:0.0
注意小于十时的细节即可 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b; while(scanf("%d %d",&a,&b)!=EOF&&a!=0&&b…… 题解列表 2022年04月22日 1 点赞 0 评论 370 浏览 评分:0.0
(fly)1578: 蓝桥杯算法提高VIP-阮小二买彩票(不需要用任何库) 摘要:解题思路:注意事项:参考代码:x=input().strip() ls=[x[0]] for i in x[1:]: lt=[] for k in ls: f…… 题解列表 2022年04月22日 0 点赞 0 评论 370 浏览 评分:0.0
信息学奥赛一本通T1616-A 的 B 次方(Java代码) 摘要:```java import java.math.BigInteger; import java.util.Scanner; public class Main { public st…… 题解列表 2022年04月22日 0 点赞 0 评论 502 浏览 评分:0.0
1597: 蓝桥杯算法训练VIP-提货单 摘要:解题思路:注意事项:参考代码:x=int(input().strip()) sum_1=0 for i in range(x): a,b,c=map(str,input().split(…… 题解列表 2022年04月23日 0 点赞 0 评论 442 浏览 评分:0.0
1598: 蓝桥杯算法训练VIP-学生成绩 摘要:解题思路:注意事项:参考代码:x=int(input().strip()) ls=[] for i in range(x): inp=map(str,input().split()) …… 题解列表 2022年04月23日 0 点赞 0 评论 491 浏览 评分:0.0
【鼠鼠】用结构体的方法,适合小白 摘要:``````cpp #include //#include #include #include #include #include using namespace std; str…… 题解列表 2022年04月23日 0 点赞 0 评论 340 浏览 评分:0.0
1600: 蓝桥杯算法训练VIP-s01串 摘要:解题思路:注意事项:参考代码:n=int(input()) s=['0'] st=[] for i in range(n): for j in range(len(s)…… 题解列表 2022年04月23日 0 点赞 0 评论 440 浏览 评分:0.0
(fly)1605: 蓝桥杯算法训练VIP-阿尔法乘积(python,递归) 摘要:解题思路:注意事项:参考代码:n=input().strip() def alpha(n): if len(n)==1: return n else: …… 题解列表 2022年04月23日 0 点赞 0 评论 327 浏览 评分:0.0