问题1803--Ones

1803: Ones

[命题人 : 外部导入]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

Given any integer 0 <= n <= 10000 not divisible by 2 or 5, some multiple of n is a number which in decimal notation is a sequence of 1's. How many digits are in the smallest such a multiple of n?

输入

Each line contains a number n.

输出

Output the number of digits.

样例输入 Copy

3 
7 
9901

样例输出 Copy

3
6
12

来源/分类