比赛 |
2009noip模拟试卷 |
评测结果 |
AAAAAAAAAA |
题目名称 |
01数字 |
最终得分 |
100 |
用户昵称 |
灰里城 |
运行时间 |
0.003 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-09 14:14:52 |
显示代码纯文本
#include <iostream>
#include <stdio.h>
using namespace std;
const int maxans=30000;
bool Judge(int x){
if(x==1)return true;
while(x>=10){
int y=x%10;x/=10;
if(y!=0&&y!=1)return false;
}
if(x==1)return true;
return false;
}
int main(){
freopen("torch.in","r",stdin);
freopen("torch.out","w",stdout);
int n;
scanf("%d",&n);
for(int i=1;i<=maxans;++i){
if(Judge(n*i)){
printf("%d\n",i);
return 0;
}
}
printf("NO\n");
fclose(stdin);fclose(stdout);
return 0;
}