結果

問題 No.1842 Decimal Point
ユーザー houren
提出日時 2022-02-18 21:47:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 1,614 ms
コンパイル使用メモリ 167,428 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 08:39:38
合計ジャッジ時間 3,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
ll mpow(ll x, ll y, ll MOD){
    ll res = 1; x %= MOD;
    while(y){
        if(y%2) res = res * x % MOD;
        x = x * x % MOD;
        y /= 2;
    }
    return res;
}
int main(){
    int t;
    cin >> t;
    rep(houren,t){
        ll a,b,c;
        cin >> a >> b >> c;
        cout << a * mpow(10, c-1, b) % b * 10 / b << endl;
    }
    return 0;
}
0