弟弟的作业(C语言) 摘要:#include<stdio.h> #include<string.h> int main() { int a, b , e; char c; int k; int s…… 题解列表 2023年06月09日 0 点赞 0 评论 266 浏览 评分:0.0
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))a=sorted(a)for i in a: print(i,end=" ")…… 题解列表 2023年06月09日 0 点赞 0 评论 478 浏览 评分:0.0
线性欧拉筛+前缀和 摘要:解题思路:可以看我写的题解 https://blog.csdn.net/weixin_61067952/article/details/131122831?spm=1001.2014.3001.5…… 题解列表 2023年06月09日 0 点赞 0 评论 425 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> int main(){ char str[501]; gets(str); …… 题解列表 2023年06月09日 0 点赞 0 评论 380 浏览 评分:0.0
优质题解 预处理 + 双端队列 摘要:# 预处理 + 单调队列 + 滑动窗口 ## 前言 俗话说的好,先易后难。我们先看一下这道题的一维版本:[1438. 绝对差不超过限制的最长连续子数组 ](https://leetcode.cn…… 题解列表 2023年06月09日 0 点赞 1 评论 1009 浏览 评分:9.9
dfs搜索枚举 摘要:解题思路:把数字的每一位抠出来,然后进行搜索即可,从高位向低位搜索,高位越大越好注意事项:参考代码:import java.util.Scanner; public class Main { …… 题解列表 2023年06月09日 0 点赞 0 评论 492 浏览 评分:0.0
A+B Problem(python) 摘要:解题思路:这题很简单,用map()函数输入两个值再直接相加即可注意事项:参考代码:x,y=map(int,input().split())print(x+y)…… 题解列表 2023年06月09日 0 点赞 0 评论 1184 浏览 评分:9.9
统计数字字符个数(python) 摘要:解题思路:注意事项:参考代码:a=input()s=[]for i in a: if i in'1234567890': s.append(i)print(len(…… 题解列表 2023年06月09日 0 点赞 0 评论 442 浏览 评分:0.0
理解题目所给的参考答案,易于理解,保证看了都会 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[4]; int i,j,k,n; for(i=0;i<4;i++) scan…… 题解列表 2023年06月09日 0 点赞 5 评论 712 浏览 评分:9.5
找第一个只出现一次的字符 摘要:解题思路:注意事项:参考代码:a=input()for i in a: if a.count(i)==1: print(i) breakelse: print(…… 题解列表 2023年06月09日 0 点赞 1 评论 715 浏览 评分:9.9