AtCoder Beginner Contest 174 C Repsept
Repsept 题目: Takahashi loves the number 7 and multiples of K.Where is the first occurrence of a multiple of K in the sequence 7,77,777,…? (Also see Output and Sample Input/Output below.) If the sequence contains no multiples of K, print -1 instead. Input Input is given from Standard Input in the following format: K Output Print an integer representing the position of the first occurrence of a multiple of K, (For example, if the first occurrence is the fourth element of the sequence, print 4.) 输入样例1 (Sample Input 1) 101 输出样例1 (Sample Output 1) 4 输入样例2 (Sample Input 2) 2 输出样例2 (Sample Output 2)