2656: 蓝桥杯2022年真题-刷题统计(快速) 摘要:```cpp #include using namespace std; typedef long long LL; int main() { LL a , b , n ,…… 题解列表 2024年03月26日 0 点赞 0 评论 482 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python def max_join(a, b, n): a.sort() b.sort(reverse=True) max_join = 0 # 记录最大配…… 题解列表 2024年03月26日 0 点赞 0 评论 231 浏览 评分: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 评论 295 浏览 评分:0.0
java解法动态规划 摘要:import java.util.Scanner; public class Main { private static final int MOD = 1000000007; …… 题解列表 2024年03月26日 0 点赞 0 评论 255 浏览 评分:0.0
蓝桥杯2023年第十四届省赛真题-飞机降落: C++, dfs 摘要: ```cpp #pragma warning(disable:4996) #include using namespace std; int T, n; int t,…… 题解列表 2024年03月26日 0 点赞 0 评论 385 浏览 评分:0.0
前缀和+双指针优化(过100%) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { static final int N = 505; …… 题解列表 2024年03月26日 0 点赞 0 评论 339 浏览 评分:2.0
2873: 字符串p型编码 摘要:解题思路:注意事项:参考代码:s = input() + ' ' a = "" b = 1 for i in range(len(s) - 1): if s[i] ==…… 题解列表 2024年03月26日 0 点赞 0 评论 407 浏览 评分:0.0
自定义函数求字符串反转 摘要:解题思路:双指针求字符串反转注意事项:参考代码:#include<stdio.h>#include<string.h>void reverse(char *arr);void reverse(char…… 题解列表 2024年03月26日 0 点赞 0 评论 202 浏览 评分:0.0
1273: ISBN码 摘要:解题思路:注意事项:参考代码:while True: try: s = input() s1 = "".join(s.split('-')…… 题解列表 2024年03月26日 0 点赞 0 评论 509 浏览 评分:0.0
牛吃牧草(面相结果的编程) 摘要:解题思路:由题目已知,设1头牛一天吃x,牧草总数为T,牧草每天新增y 然后列出方程组:15*20x=T+20y 题解列表 2024年03月26日 1 点赞 0 评论 1359 浏览 评分:0.0