結果
問題 | No.2271 平方根の13桁精度近似計算 |
ユーザー | milanis48663220 |
提出日時 | 2023-04-14 23:12:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,728 bytes |
コンパイル時間 | 1,242 ms |
コンパイル使用メモリ | 127,644 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 14:17:00 |
合計ジャッジ時間 | 3,721 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 5 ms
6,816 KB |
testcase_11 | AC | 5 ms
6,816 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 5 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | AC | 6 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 5 ms
6,816 KB |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,820 KB |
testcase_26 | AC | 1 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,820 KB |
testcase_30 | AC | 102 ms
6,816 KB |
testcase_31 | AC | 2 ms
6,820 KB |
testcase_32 | AC | 2 ms
6,820 KB |
testcase_33 | AC | 5 ms
6,820 KB |
testcase_34 | WA | - |
testcase_35 | AC | 2 ms
6,816 KB |
testcase_36 | AC | 517 ms
6,820 KB |
testcase_37 | AC | 2 ms
6,820 KB |
testcase_38 | AC | 2 ms
6,820 KB |
testcase_39 | AC | 3 ms
6,816 KB |
ソースコード
#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; } void test(){ int m = 625; map<int, int> cnt; for(int x = 0; x < m; x++){ int y = (x*x)%m; if(cnt.count(y)) cnt[y]++; else cnt[y] = 1; } for(auto [x, c]: cnt) cout << x << ":" << c << " "; cout << endl; } const ll N = 1<<29; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; // test(); ll n, e; cin >> n >> e; ll x = 1; for(int i = 0; i < e; i++) x *= 5; if(e <= 4){ for(ll r = 0; r < x; r++){ ll d = abs(n-r*r); if(d%x == 0){ cout << r << endl; return 0; } } cout << "NaN" << endl; return 0; } const ll m = 625; ll rem = n%m; rem = (rem+m)%m; vector<int> rr; for(int i = 0; i < m; i++){ if((i*i)%m == rem) rr.push_back(i); } for(ll i = 0; i*m < x; i++){ for(ll a: rr){ ll r = i*m+a; ll d = abs(n-r*r); if(d%x == 0){ if(n <= N){ cout << r << endl; return 0; } while(true){ n -= x; if(n >= -N){ if(n <= N){ cout << r << endl; return 0; } }else{ break; } } } } } cout << "NaN" << endl; return 0; }