给一个数n,让你找出一个只有1,0,组成的十进制数,要求是找到的数可以被n整除。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using namespace std;
typedef long long ll;
const int maxn=1e6+10;
int n;
void bfs(){
queue<ll> q;
ll tmp;
q.push(1);
while(!q.empty()){
tmp=q.front();
q.pop();
if(tmp%n==0)
{
printf("%lld\n",tmp);
return ;
}
q.push(tmp*10);
q.push(tmp*10+1);
}
}
int main(){
while(scanf("%d",&n)!=EOF){
if(n==0)break;
bfs();
}
return 0;
}
poj1426Find The Multiple
-------------本文结束感谢您的阅读-------------