Python时间超限解决方法 摘要:解题思路:如果给出的n非常大,需要循环的次数非常多,导致时间超限。不妨恰定一个范围,使循环次数大大减少。注意事项:参考代码:def b(n): s = 0 for i in range(l…… 题解列表 2024年03月02日 0 点赞 1 评论 30 浏览 评分:9.9
筛选法做题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int s[10000+1]; //值为1表示下标为 非寂寞数。值为0则表示下标为寂…… 题解列表 2024年02月13日 0 点赞 0 评论 105 浏览 评分:0.0
暴力寂寞的数 摘要:解题思路:想太多思维容易一坨,还是暴力吧。。注意事项:参考代码:def d(num): temp = [int(i) for i in str(num)] return num +…… 题解列表 2023年10月16日 0 点赞 0 评论 72 浏览 评分:9.9
set容器解法 摘要:```cpp #include #include #include using namespace std; int d(int n){ int tend = n; w…… 题解列表 2023年03月21日 0 点赞 0 评论 108 浏览 评分:0.0
蓝桥杯专题系列-1625(Python) 摘要:解题思路:暴力法注意事项:尽量使用较少的变量,尽可能使用内建函数参考代码:未优化前的代码:73%import syssys.setrecursionlimit(200000)n = input()co…… 题解列表 2023年03月05日 0 点赞 1 评论 77 浏览 评分:9.9
小南解题-寂寞的数--81ms 摘要:aa=set()bb=set()n=int(input())for i in range(1,n+1): bb.add(i) a=0 i=str(i) if len(i)==1…… 题解列表 2022年08月26日 0 点赞 0 评论 77 浏览 评分:0.0
小南解题-寂寞的数 摘要:'''zgn94614:17 2022/5/28''''''#大神写n = int(input())ipt = [i for i…… 题解列表 2022年05月28日 0 点赞 0 评论 110 浏览 评分:0.0
蓝桥杯算法训练VIP-寂寞的数(Python) 摘要:解题思路:先用for循环选出不是寂寞的数存在set表里再用for循环结合set表来判断寂寞的数注意事项:参考代码z=set([]) wa=[] for i in range(10000): …… 题解列表 2022年03月25日 0 点赞 0 评论 184 浏览 评分:9.9
没啥好说的,祝大家新年快乐吧 摘要: #include #define MAX 10000+6 using namespace std; int visit[MAX]; int xx…… 题解列表 2022年01月23日 0 点赞 0 评论 222 浏览 评分:9.9