set容器解法 摘要:```cpp #include #include #include using namespace std; int d(int n){ int tend = n; w…… 题解列表 2023年03月21日 0 点赞 0 评论 117 浏览 评分:0.0
暴力寂寞的数 摘要:解题思路:想太多思维容易一坨,还是暴力吧。。注意事项:参考代码:def d(num): temp = [int(i) for i in str(num)] return num +…… 题解列表 2023年10月16日 0 点赞 0 评论 78 浏览 评分:9.9
筛选法做题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int s[10000+1]; //值为1表示下标为 非寂寞数。值为0则表示下标为寂…… 题解列表 2024年02月13日 0 点赞 0 评论 110 浏览 评分:0.0
Python时间超限解决方法 摘要:解题思路:如果给出的n非常大,需要循环的次数非常多,导致时间超限。不妨恰定一个范围,使循环次数大大减少。注意事项:参考代码:def b(n): s = 0 for i in range(l…… 题解列表 2024年03月02日 0 点赞 1 评论 32 浏览 评分:9.9