結果
問題 | No.3072 Sum of sqrt(x) |
ユーザー | vwxyz |
提出日時 | 2021-10-26 01:58:18 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 863 bytes |
コンパイル時間 | 5,957 ms |
コンパイル使用メモリ | 368,440 KB |
実行使用メモリ | 13,764 KB |
最終ジャッジ日時 | 2024-10-04 03:18:10 |
合計ジャッジ時間 | 21,803 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | OLE | - |
testcase_08 | OLE | - |
testcase_09 | OLE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <iostream> #include <ios> #include <iomanip> #include <boost/multiprecision/cpp_int.hpp> using namespace std; using namespace boost::multiprecision; typedef cpp_int Bint; Bint sqrt_floor(Bint x) { Bint ceil = x, floor = 1; while (ceil > floor + 1) { auto m = (ceil+floor)/2; if (m*m <= x) floor = m; else ceil = m; } return floor; } int main() { const int prec = 20; Bint unit = pow(Bint(10),prec); cout<<unit<<endl; int N; cin >> N; Bint ans = 0; for (auto i=0; i<N; ++i) { Bint x; cin >> x; auto p = sqrt_floor(x); cout << ans / unit << "." << setfill('0') << right << setw(prec - 3) << (ans % unit)/1000 << std::setfill(' ') << endl; } return 0; }