結果
問題 | No.3062 A + B |
ユーザー | shop_one |
提出日時 | 2020-04-01 21:38:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 8,245 ms |
コンパイル使用メモリ | 320,268 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 09:55:46 |
合計ジャッジ時間 | 7,949 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
In file included from /boost_git/boost/none_t.hpp:17, from /boost_git/boost/none.hpp:17, from /boost_git/boost/optional/optional.hpp:60, from /boost_git/boost/optional.hpp:15, from main.cpp:14: /boost_git/boost/config/pragma_message.hpp:24:34: note: '#pragma message: This header is deprecated. Use <boost/integer/common_factor_rt.hpp> instead.' 24 | # define BOOST_PRAGMA_MESSAGE(x) _Pragma(BOOST_STRINGIZE(message(x))) | ^~~~~~~ /boost_git/boost/config/header_deprecated.hpp:23:37: note: in expansion of macro 'BOOST_PRAGMA_MESSAGE' 23 | # define BOOST_HEADER_DEPRECATED(a) BOOST_PRAGMA_MESSAGE("This header is deprecated. Use " a " instead.") | ^~~~~~~~~~~~~~~~~~~~ /boost_git/boost/math/tools/header_deprecated.hpp:12:47: note: in expansion of macro 'BOOST_HEADER_DEPRECATED' 12 | # define BOOST_MATH_HEADER_DEPRECATED(expr) BOOST_HEADER_DEPRECATED(expr) | ^~~~~~~~~~~~~~~~~~~~~~~ /boost_git/boost/math/common_factor_rt.hpp:14:1: note: in expansion of macro 'BOOST_MATH_HEADER_DEPRECATED' 14 | BOOST_MATH_HEADER_DEPRECATED("<boost/integer/common_factor_rt.hpp>"); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
// I SELL YOU...! #include<iostream> #include<vector> #include<algorithm> #include<functional> #include<queue> #include<chrono> #include<iomanip> #include<map> #include<set> #include <boost/lexical_cast.hpp> #include <boost/algorithm/string.hpp> #include <boost/multi_array.hpp> #include <boost/optional.hpp> #include <boost/math/common_factor_rt.hpp> #include <boost/multiprecision/cpp_dec_float.hpp> namespace mp = boost::multiprecision; using namespace std; using ll = long long; using P = pair<ll,ll>; void init_io(){ cin.tie(0); ios::sync_with_stdio(false); cout << setprecision(10); } signed main(){ init_io(); mp::cpp_dec_float_50 a,b; cin >> a >> b; cout << a + b <<endl; }