結果

問題 No.2086 A+B問題
ユーザー umezoumezo
提出日時 2022-09-30 22:40:33
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 9,266 ms
コンパイル使用メモリ 437,704 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 00:26:24
合計ジャッジ時間 8,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

#include <bits/stdc++.h>
using namespace std;

int main(){
  Bint a,b;
  cin>>a>>b;
  cout<<a+b<<endl;
  
  return 0;
}
0