結果
問題 | No.1842 Decimal Point |
ユーザー | umezo |
提出日時 | 2022-02-19 04:09:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 194 ms / 2,000 ms |
コード長 | 475 bytes |
コンパイル時間 | 1,781 ms |
コンパイル使用メモリ | 200,080 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 10:13:18 |
合計ジャッジ時間 | 3,029 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 139 ms
5,248 KB |
testcase_02 | AC | 194 ms
5,376 KB |
testcase_03 | AC | 189 ms
5,376 KB |
testcase_04 | AC | 168 ms
5,376 KB |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include<bits/stdc++.h> using namespace std; ll modpow(ll x,ll n,ll MOD){ ll ans=1; while(n){ if(n&1) ans=ans*x%MOD; x=x*x%MOD; n/=2; } return ans; } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int t; cin>>t; while(t--){ ll a,b,c; cin>>a>>b>>c; cout<<a*modpow(10,c-1,b)%b*10/b<<endl; } return 0; }