码迷,mamicode.com
首页 > 其他好文 > 详细

Find The Multiple

时间:2018-02-28 14:06:14      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:post   space   ret   style   std   col   ace   div   span   

题意:给定一个n找十进制只包含0 1 并且为n的倍数的数,注意数据范围就可以了,dfs不难理解

代码如下:

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
typedef unsigned long long ll;
bool vis;
void dfs(ll x,int n,int k)
{
    if(vis)
        return ;
    if(x%n==0)
       {    vis=true;
           printf("%llu\n",x);//无符号longnlong输出用llu,我用lld答案错误了
           return ;
       }
       if(k==19)
        return ;
       dfs(x*10,n,k+1);
       dfs(x*10+1,n,k+1);


}
int main()
{
    int m;
    while(scanf("%d",&m),m!=0)
    {
        vis=false;
        dfs(1,m,0);
    }
}

 

Find The Multiple

标签:post   space   ret   style   std   col   ace   div   span   

原文地址:https://www.cnblogs.com/nr1999/p/8482936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!