結果
| 問題 | No.8124 A+B |
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2026-04-08 06:07:14 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 454 bytes |
| 記録 | |
| コンパイル時間 | 6,803 ms |
| コンパイル使用メモリ | 659,748 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-04-08 06:07:25 |
| 合計ジャッジ時間 | 8,237 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 6 |
ソースコード
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
#include <boost/multiprecision/cpp_dec_float.hpp>
#include <boost/multiprecision/cpp_int.hpp>
namespace mp = boost::multiprecision;
using Bint = mp::cpp_int;
using Real = mp::number<mp::cpp_dec_float<1024>>;
#include <bits/stdc++.h>
using namespace std;
int main(){
Real a,b;
cin>>a>>b;
cout<<fixed<<setprecision(10)<<a+b<<endl;
return 0;
}
umezo