比赛 |
2009noip模拟试卷 |
评测结果 |
AAAAAAAAAA |
题目名称 |
01数字 |
最终得分 |
100 |
用户昵称 |
Janis |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-09 14:42:57 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int n;
bool Judge(int x){
// puts("A");
while(x%10==1 || x%10==0 && x!=0)x/=10;
if(x)return 0;
return 1;
}
int main()
{
#ifndef DEBUG
freopen("torch.in","r",stdin);
freopen("torch.out","w",stdout);
#endif
cin>>n;
for(int m=1;m<=30000;m++){
// printf("%d ",m);
if(Judge(n*m)){
cout<<m;
return 0;
}
}
// if(Judge(12*925))cout<<"caonima";
printf("NO");
}