编写题解 2072: [STL训练]寻梦 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): strg_1=input() strg_2=input().strip() …… 题解列表 2022年03月16日 0 点赞 0 评论 725 浏览 评分:9.9
编写题解 2071: [STL训练]壮志难酬 摘要:解题思路:注意事项:参考代码:n=int(input()) for i in range(n): a,b=map(str,input().split()) print(a[a.f…… 题解列表 2022年03月16日 0 点赞 0 评论 749 浏览 评分:0.0
1446: 蓝桥杯2013年第四届真题-核桃的数量 摘要:解题思路:注意事项:参考代码:a, b, c = map(int, input().split()) i = 0 while True: i += 1 su = max(a, …… 题解列表 2022年03月16日 0 点赞 0 评论 464 浏览 评分:9.9
阶乘求和初学 摘要:解题思路:注意事项:参考代码:n=int(input())list1=[]b=1for i in range(1,n+1): b=b*i list1.append(b)print(sum(…… 题解列表 2022年03月16日 0 点赞 0 评论 454 浏览 评分:0.0
蓝桥杯历届试题-回文数字 C++模拟 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int n; int count_=0; string s; …… 题解列表 2022年03月16日 0 点赞 0 评论 776 浏览 评分:0.0
1509: 蓝桥杯算法提高VIP-图形输出 ```cpp#includeusingnamespacestd;intmain(){cout 题解列表 2022年03月15日 0 点赞 0 评论 663 浏览 评分:0.0
1507: 蓝桥杯算法提高VIP-去注释 ```cpp#includeusingnamespacestd;intmain(){charc;while((c=cin.get())!=EOF)//(c=cin.get())要加(){if(c=='/'){chard=cin.get();if(d=='/'){while((d=cin.get())! 题解列表 2022年03月15日 0 点赞 0 评论 690 浏览 评分:9.9
子串分值复杂解法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include<string>using namespace std;int leftbound[100000];int …… 题解列表 2022年03月15日 0 点赞 0 评论 1229 浏览 评分:9.9
计算2^n(C语言) 摘要:解题思路: 引用<math.h>头文件,运用pow(x,y);函数注意事项:pow(x,y);两数之间用英文逗号隔开后者为指数。参考代码:#include <stdio.h> #include <…… 题解列表 2022年03月15日 0 点赞 0 评论 754 浏览 评分:9.9
蓝桥杯2015年第六届真题-奇怪的数列 摘要:解题思路:StringBuilder不断更新字符串,依次比较后赋值注意事项:注意下标溢出参考代码:import java.util.Scanner;public class Main { pu…… 题解列表 2022年03月15日 0 点赞 0 评论 694 浏览 评分:0.0