900B. Position in Fraction#分数位置(模拟)

Posted hello_OK

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了900B. Position in Fraction#分数位置(模拟)相关的知识,希望对你有一定的参考价值。

题目出处:http://codeforces.com/problemset/problem/900/B

题目大意:找到一个数字在小数部分中第一次出现的位置

#include<iostream>
using namespace std;
int main(){
    int fz,fm,c,i=1;
    cin>>fz>>fm>>c;
    while(i<100005){
        fz*=10;
        if(fz/fm==c){cout<<i<<endl;return 0;}
        fz%=fm; i++;
    }
    cout<<"-1"<<endl;
    return 0;
}

题目就是简单的模拟,从十分位开始一位一位向后查询

以上是关于900B. Position in Fraction#分数位置(模拟)的主要内容,如果未能解决你的问题,请参考以下文章

leetcode刷题总结851-900

POSITION(str1 IN str)

Matlab实用程序--图形应用-双y轴图形的绘制

Change position in observation

CF 900B

Codeforces 900 E. Maximum Questions (DP,技巧)