結果
| 問題 | No.8124 A+B |
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2026-04-08 06:08:24 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 453 bytes |
| 記録 | |
| コンパイル時間 | 8,586 ms |
| コンパイル使用メモリ | 658,668 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-04-08 06:08:34 |
| 合計ジャッジ時間 | 9,919 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 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(0)<<a+b<<endl;
return 0;
}
umezo