题库练习 Position in Fraction
← 上一题 下一题 →

A11376 | Position in Fraction

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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
C++ 编辑器
输入
输出