1273: ISBN码 摘要:解题思路:注意事项:参考代码:while True: try: s = input() s1 = "".join(s.split('-')…… 题解列表 2024年03月26日 0 点赞 0 评论 461 浏览 评分:0.0
自定义函数求字符串反转 摘要:解题思路:双指针求字符串反转注意事项:参考代码:#include<stdio.h>#include<string.h>void reverse(char *arr);void reverse(char…… 题解列表 2024年03月26日 0 点赞 0 评论 172 浏览 评分:0.0
2873: 字符串p型编码 摘要:解题思路:注意事项:参考代码:s = input() + ' ' a = "" b = 1 for i in range(len(s) - 1): if s[i] ==…… 题解列表 2024年03月26日 0 点赞 0 评论 360 浏览 评分:0.0
蓝桥杯2023年第十四届省赛真题-飞机降落: C++, dfs 摘要: ```cpp #pragma warning(disable:4996) #include using namespace std; int T, n; int t,…… 题解列表 2024年03月26日 0 点赞 0 评论 329 浏览 评分:0.0
java解法动态规划 摘要:import java.util.Scanner; public class Main { private static final int MOD = 1000000007; …… 题解列表 2024年03月26日 0 点赞 0 评论 217 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python rmb = [100, 50, 10, 5, 2, 1] def change_money(li): new_li = [0 for i in range(len(r…… 题解列表 2024年03月26日 0 点赞 0 评论 250 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python def max_join(a, b, n): a.sort() b.sort(reverse=True) max_join = 0 # 记录最大配…… 题解列表 2024年03月26日 0 点赞 0 评论 193 浏览 评分:0.0
2656: 蓝桥杯2022年真题-刷题统计(快速) 摘要:```cpp #include using namespace std; typedef long long LL; int main() { LL a , b , n ,…… 题解列表 2024年03月26日 0 点赞 0 评论 428 浏览 评分:0.0
2657: 蓝桥杯2022年真题-修剪灌木(找规律) 摘要:##初始暴力做法(超时) ```cpp #include #include #include using namespace std; const int N = 1e4 + 10; …… 题解列表 2024年03月26日 1 点赞 0 评论 335 浏览 评分:0.0
迷宫问题(Java) 广搜 摘要:```java import java.util.*; public class Main { public static class jiegou { int x…… 题解列表 2024年03月26日 0 点赞 0 评论 184 浏览 评分:0.0