记录编号 55278 评测结果 AAAAAAAAAA
题目名称 [HAOI 2012初中]01数字 最终得分 100
用户昵称 Gravatarcstdio 是否通过 通过
代码语言 C++ 运行时间 0.002 s
提交时间 2013-03-17 17:30:40 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
bool legal(int x){
	while(x!=0){
		if(!(x%10==0||x%10==1)) return false;
		x/=10;
	}
	return true;
}
int main(){
	freopen("torch.in","r",stdin);
	freopen("torch.out","w",stdout);
	int n;
	scanf("%d",&n);
	int i;
	for(i=1;i<=30000;i++){
		if(legal(n*i)){
			printf("%d\n",i);
			return 0;
		}
	}
	return 0;
}