1. 程式人生 > >qwb與小數

qwb與小數

ret pow space air cli clas 做了 cto 一行

qwb與小數

Time Limit: 1 Sec Memory Limit: 128 MB

Description

qwb遇到了一個問題:將分數a/b化為小數後,小數點後第n位的數字是多少?

做了那麽多題,我已經不指望你能夠幫上他了。。。

Input

多組測試數據,處理到文件結束。(測試數據<=100000組)

每組測試例包含三個整數a,b,n,相鄰兩個數之間用單個空格隔開,其中0 <= a <1e9,0 < b < 1e9,1 <= n < 1e9。

Output

對於每組數據,輸出a/b的第n位數,占一行。

Sample Input

1 2 1
1 2 2

Sample Output

5
0
分析:a/b後小數點第n位,因為一直*10%b,最後*10/b,快速冪就好了;
代碼:
#include <iostream> 
#include <cstdio> 
#include <cstdlib> 
#include <cmath> 
#include <algorithm> 
#include <climits> 
#include <cstring> 
#include <string> 
#include 
<set> #include <bitset> #include <map> #include <queue> #include <stack> #include <vector> #include <cassert> #include <ctime> #include<unordered_map> #define rep(i,m,n) for(i=m;i<=n;i++) #define mod 1000000007 #define inf 0x3f3f3f3f #define
vi vector<int> #define pb push_back #define mp make_pair #define fi first #define se second #define ll long long #define pi acos(-1.0) #define pii pair<int,int> #define sys system("pause") #define ls rt<<1 #define rs rt<<1|1 const int maxn=1e3+10; const int N=5e2+10; using namespace std; ll gcd(ll p,ll q){return q==0?p:gcd(q,p%q);} int n,m,k,t; ll qpow(ll p,ll q){ll f=1;while(q){if(q&1)f=f*p%m;p=p*p%m;q>>=1;}return f;} int main() { int i,j; while(~scanf("%d%d%d",&n,&m,&k)) { printf("%lld\n",(n%m)*qpow(10,k-1)%m*10/m); } return 0; }

qwb與小數