第一个pyAC 五行秒杀 摘要:解题思路:注意事项:参考代码:n=int(input())while len(str(n))!=1: x=sum(list(map(int,str(n)))) n=x…… 题解列表 2023年04月03日 0 点赞 0 评论 357 浏览 评分:0.0
寻找矩阵最值 摘要:解题思路:第一层循环赋值,同时比大小,第二层找到选好的值输出类似的nxn矩阵都可以这么做注意事项:i+1,j+1输出的下标和找到的不一样参考代码:#include<iostream> #includ…… 题解列表 2023年04月03日 0 点赞 0 评论 481 浏览 评分:0.0
纯签到题,str.count直接秒了 摘要:解题思路:注意事项:参考代码:n=int(input())cnt=0for i in range(1,n+1): t=str(i) if t.count('2')>0 or…… 题解列表 2023年04月03日 0 点赞 0 评论 366 浏览 评分:0.0
datetime判断日期合理性即可 摘要:解题思路:注意事项:参考代码:from datetime import datetimedef isValidTime(y,m,d): try: t=datetime(y,m,d)…… 题解列表 2023年04月03日 0 点赞 0 评论 395 浏览 评分:0.0
動態內存申請 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>//malloc函數的頭文件void mycpy(const char *sou,char *goa…… 题解列表 2023年04月03日 0 点赞 0 评论 309 浏览 评分:0.0
蓝桥杯2022年第十三届省赛真题-重新排序 摘要:解题思路:前缀和和差分数组减少运算量注意事项:不要超时和使用long long参考代码:#include <iostream> #include <vector> #include <set> …… 题解列表 2023年04月03日 0 点赞 1 评论 578 浏览 评分:9.9
nxn矩阵的两对角线上的元素之和 摘要:解题思路:对于nxn级矩阵求对角线的和,实际是选取主对角线及下标和为n-1的数组和同时减去中心数组的值注意事项:参考代码:#include<iostream> using namespace std…… 题解列表 2023年04月03日 0 点赞 0 评论 253 浏览 评分:0.0
简单思路,附有注释,通俗易懂 摘要:```java //package 蓝桥杯2022年第十三届决赛真题; import java.util.Scanner; public class Main { private s…… 题解列表 2023年04月03日 0 点赞 0 评论 609 浏览 评分:0.0
题解 1095: The 3n + 1 problem 摘要:解题思路:注意事项:还得先比较输入的两个数的大小!!!参考代码#include<stdio.h> int main() { int a,b,m,n,j,temp; int su…… 题解列表 2023年04月03日 0 点赞 0 评论 283 浏览 评分:0.0
C++递归求解 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <vector>using namespace std;vector<int> f[100050];int dfs…… 题解列表 2023年04月03日 1 点赞 0 评论 411 浏览 评分:9.9