题解 1625: 蓝桥杯算法训练VIP-寂寞的数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

筛选法做题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int s[10000+1]; //值为1表示下标为 非寂寞数。值为0则表示下标为寂……

小南解题-寂寞的数--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……

简单的dfs。。。

摘要:解题思路:dfs注意事项:无参考代码:#include<iostream> using namespace std; int ver[10050]={0}; int N; void d(i……

小南解题-寂寞的数

摘要:&#39;&#39;&#39;zgn94614:17 2022/5/28&#39;&#39;&#39;&#39;&#39;&#39;#大神写n = int(input())ipt = [i for i……