結果
| 問題 |
No.2086 A+B問題
|
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2022-09-30 22:40:33 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 379 bytes |
| コンパイル時間 | 6,086 ms |
| コンパイル使用メモリ | 445,440 KB |
| 最終ジャッジ日時 | 2025-02-07 19:40:29 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#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;
}
umezo