Position in Fraction (小数除法模拟)

本文介绍了一种算法,用于寻找特定数字在给定分数的小数展开中首次出现的位置。通过不断将分子乘以10并与分母进行除法运算来实现这一目标。如果找到指定数字,则返回其位置;若循环节过长仍未找到则返回-1。

Position in Fraction

You have a fraction . You need to find the first occurrence of digit c into decimal notation of the fraction after decimal point.


Input

The first contains three single positive integers a, b, c (1 ≤ a < b ≤ 105, 0 ≤ c ≤ 9).

Output

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.

Examples
Input
1 2 0
Output
2
Input
2 3 7
Output
-1
Note

The fraction in the first example has the following decimal notation: . The first zero stands on second position.

The fraction in the second example has the following decimal notation: . There is no digit 7 in decimal notation of the fraction.

code:

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int main(){
    int n,m,c,i;
    scanf("%d%d%d",&m,&n,&c);
    int pos = -1;
    int fz = m,fm = n;
    i = 0;
    while(1){
        i++;
        fz *= 10;
        if(fz / fm == c){
            pos = i;
            break;
        }
        fz = fz % fm;
        if(i >= 100005) break;//限制循环节长度
    }
    printf("%d\n",pos);
    return 0;
}


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值