题解 2831: 画矩形 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main() {&n…… 题解列表 2025年01月13日 1 点赞 0 评论 114 浏览 评分:10.0
编写题解 2664: 蓝桥杯2022年第十三届省赛真题-求和(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int n;&nb…… 题解列表 2025年01月13日 6 点赞 0 评论 537 浏览 评分:10.0
python|sys.stdin 摘要:```pythonimport sysfrom collections import Counter# python可能超时过不了全部,使用sys.stdin一次all in输入数据,…… 题解列表 2025年01月14日 1 点赞 0 评论 101 浏览 评分:10.0
编写题解 1004: [递归]母牛的故事(注释清晰,简单易懂) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; int sum[55];&nb…… 题解列表 2025年01月14日 33 点赞 0 评论 1510 浏览 评分:10.0
Python | 生成器 摘要:### yieldfrom运用在dfs问题 2038: [简化型背包]([简化型背包](https://www.dotcpp.com/vipstudy_suanfa/problem/?id=203…… 题解列表 2025年01月14日 1 点赞 0 评论 101 浏览 评分:10.0
简单易懂 给个赞 嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void fact(int n);int main(){ int n; // n 是空的汽水瓶 while (1) { s…… 题解列表 2025年01月16日 2 点赞 0 评论 428 浏览 评分:10.0
迭代法求平方根python 摘要:参考代码:a=int(input())b=awhile True: c=(b+a/b)/2 if abs(b-c)<0.00001: …… 题解列表 2025年01月16日 1 点赞 0 评论 425 浏览 评分:10.0
简单易懂 给个赞 嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){&nb…… 题解列表 2025年01月16日 4 点赞 0 评论 501 浏览 评分:10.0
简单易于理解的字符串提取问题——Python 摘要:a=eval(input())b=list(input())c=eval(input())foriinb[c-1:]:&nb…… 题解列表 2025年01月16日 1 点赞 0 评论 223 浏览 评分:10.0
前缀总分暴力解法 摘要:思路:1.先找出最开始各个字符串的前缀长度之和2.然后枚举出每个26个字母在每个字符串之间修改之后的前缀长度对比```c++#includeusing namespace std;…… 题解列表 2025年01月16日 17 点赞 0 评论 2044 浏览 评分:10.0