测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11376. Position in Fraction

编程题 普及/提高-

题目描述

You have a fraction ![](/uploads/acgo/image/650d630bf4071e97_396f4c3ccda0.jpeg). You need to find the first occurrence of digit $c$ into decimal notation of the fraction after decimal point.

输入格式

The first contains three single positive integers $a$ , $b$ , $c$ ( $1\le a<b\le 10^{5}$ , $0\le c\le 9$ ).

输出格式

Print position of the first occurrence of digit $c$ into the fraction. Positions are numbered from $1$ after decimal point. It there is no such position, print -1.

输入输出样例

输入 #1
1 2 0
输出 #1
2
输入 #2
2 3 7
输出 #2
-1

说明/提示

The fraction in the first example has the following decimal notation: ![](/uploads/acgo/image/bf80d59b6e24ed41_fbdbb4508039.jpeg). The first zero stands on second position.

The fraction in the second example has the following decimal notation: ![](/uploads/acgo/image/9265f771ddcccede_9028ba75f3f5.jpeg). There is no digit $7$ in decimal notation of the fraction.
上一题 去做题 下一题