比赛 2009noip模拟试卷 评测结果 AAAAAAAAAA
题目名称 01数字 最终得分 100
用户昵称 SOBER GOOD BOY 运行时间 0.007 s
代码语言 C++ 内存使用 0.25 MiB
提交时间 2016-10-09 15:36:45
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>

using namespace std;

int N,M;

char s[1000];

int main()
{
    freopen("torch.in","r",stdin);
    freopen("torch.out","w",stdout);
    scanf("%d",&M);
    for(int i=1;i<=30000;i++)
    {
         sprintf(s,"%d",(i*M));
         int len=strlen(s);
         bool flag=0;
         for(int j=0;j<len;j++)
         {
             if(s[j]!='1'&&s[j]!='0')
             {
             flag=1;
             break;
             }    
         }   
         if(!flag)
         {
             printf("%d",i);
             return 0;     
         }
    }
    printf("NO");
    fclose(stdin);
    fclose(stdout);
    return 0;
}