結果
問題 | No.1842 Decimal Point |
ユーザー | milanis48663220 |
提出日時 | 2022-02-18 23:19:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,222 bytes |
コンパイル時間 | 1,217 ms |
コンパイル使用メモリ | 116,576 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-29 09:51:51 |
合計ジャッジ時間 | 2,648 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 165 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <deque> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template<typename T> vector<vector<T>> vec2d(int n, int m, T v){ return vector<vector<T>>(n, vector<T>(m, v)); } template<typename T> vector<vector<vector<T>>> vec3d(int n, int m, int k, T v){ return vector<vector<vector<T>>>(n, vector<vector<T>>(m, vector<T>(k, v))); } template<typename T> void print_vector(vector<T> v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } ll mod_pow(ll a, ll n, ll mod) { ll ans = 1; while (n > 0) { if (n&1) ans = (ans*a)%mod; a = (a*a)% mod; n >>= 1; } return ans; } void solve(){ ll a, b, c; cin >> a >> b >> c; while(b%2 == 0){ if(a%2 == 0){ a /= 2; }else{ a *= 5; c--; } b /= 2; } while(b%5 == 0){ if(a%5 == 0){ a /= 5; }else{ a *= 2; c--; } b /= 5; } // cout << a << ' ' << b << ' ' << c << endl; if(c <= 0){ ll x = a/b; while(c != 0) { x /= 10; c++; } cout << x%10 << endl; return; } ll x = (a*mod_pow(10, c, b))%b; int r = (10-x%10)%10; for(int i = 0; i < 10; i++){ if((b*i)%10 == r){ cout << i << endl; } } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int t; cin >> t; while(t--) solve(); }