python解决明明的随机数 摘要:解题思路:注意虽然题上说“明明要生成随机数”,但是实际上并没有生成随机数,需要理解题意。注意事项:参考代码:n = int(input()) a = eval(input().replace(…… 题解列表 2021年03月21日 0 点赞 0 评论 651 浏览 评分:2.0
只做最好的题解 摘要:#include<iostream> //#include<bits/stdc++.h> #include<cmath> #include<cstring> #include<algorith…… 题解列表 2021年03月23日 0 点赞 0 评论 285 浏览 评分:2.0
1611: 蓝桥杯算法训练VIP-传纸条(Python3)三维DP 摘要:解题思路:类似题目:https://www.dotcpp.com/oj/problem1639.html 题解:https://blog.dotcpp.com/a/77794参考:http://…… 题解列表 2021年03月23日 0 点赞 0 评论 611 浏览 评分:2.0
题解 2061: [STL训练]周瑜的反间计. 蒋干还会用电脑跑程序???为啥没人做?是因为前戏太多了嘛 摘要:参考代码:#include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> int main() {…… 题解列表 2021年03月24日 0 点赞 0 评论 842 浏览 评分:2.0
改进了别人的代码,删除的数字不能链表在最后 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>typedef struct STU { int num; struct STU* next;}li…… 题解列表 2021年03月24日 0 点赞 0 评论 411 浏览 评分:2.0
就两行代码,来看看吧 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] ar…… 题解列表 2021年04月01日 0 点赞 0 评论 410 浏览 评分:2.0
C语言训练-"水仙花数"问题2 摘要:参考代码:#include<stdio.h>#include<math.h>main(){ int n,a,b,c; for(n=100;n<=999;n++) { …… 题解列表 2021年04月01日 0 点赞 0 评论 332 浏览 评分:2.0
Java优质实现, 摘要:解题思路:注意事项:居然是两次中根遍历,笑掉我的大牙参考代码:import java.util.LinkedList;import java.util.Scanner;class TreeNode{ …… 题解列表 2021年04月01日 0 点赞 0 评论 762 浏览 评分:2.0
容易理解的C语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int LeapYear(int year) //判断是否为闰年,闰年2月有29天,平年28天 { if (ye…… 题解列表 2021年04月02日 0 点赞 0 评论 430 浏览 评分:2.0
信息学奥赛一本通T1588-数字游戏-题解(C++代码) 摘要: 数位DP板子题(本质记忆化搜索)constexpr auto Inf = 0X3F3F3F3F; #ifndef LOCAL #include <bits/stdc++.h> …… 题解列表 2021年04月02日 0 点赞 0 评论 672 浏览 评分:2.0