結果

問題 No.2086 A+B問題
ユーザー kakao745kakao745
提出日時 2024-08-02 18:46:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,701 bytes
コンパイル時間 8,987 ms
コンパイル使用メモリ 386,248 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-02 18:46:22
合計ジャッジ時間 9,630 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(long long i=0;i<(long long)n;i++)
#define reps(i,n) for(long long i=1;i<=(long long)n;i++)
#define loop(i,l,r) for(long long i=l;i<=(long long)r;i++)
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define yn(x) cout << (x? "Yes":"No") << endl
#define cou(x) cout << x << endl
//#pragma GCC target ("avx,avx2")四則演算
#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")ループ
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")浮動小数点
#include <boost/multiprecision/cpp_int.hpp>
namespace mp = boost::multiprecision;
using bint=mp::cpp_int;
// #include <boost/multiprecision/cpp_dec_float.hpp> やばい少数派(重い)
// #include <boost/math/constants/constants.hpp>円周率他
// #include <boost/dynamic_bitset.hpp> dynamicbitset
const long long mod=998244353LL;
const long long mods=1000000007LL;
const long long yab=2500000000000000000LL;
const int kaz=1000000000;
const long long aho =-yab;
const long double eps=1.0e-14L;
const long double pi=acosl(-1.0L);
using ll=long long;
using st=string;
using P=pair<ll,ll>;
using tup=tuple<ll,ll,ll>;
using vi=vector<ll>;
using vc=vector<char>;
using vb=vector<bool>;
using vs=vector<string>;
using vp=vector<P>;
using sp=set<P>;
using si=set<ll>;
using vvi=vector<vector<ll>>;
using vvc=vector<vc>;
using vvb=vector<vb>;
const int dx[4]={0,1,0,-1};
const int dy[4]={1,0,-1,0};
const vector<int> ex = {-1, -1, -1, 0, 0, 1, 1, 1};
const vector<int> ey = {-1, 0, 1, -1, 1, -1, 0, 1};
int mysearch(vi &a,ll x){
	int l=-1;
	int r=a.size()-1;
	while(r-l>1){
		int mid=(l+r)/2;
		if(x==a[mid])return mid;
		else if(x<a[mid])r=mid;
		else l=mid;
	}
	if(x==a[r])return r;
	return -1;
}
template<typename T1,typename T2>
void co(bool x,T1 y,T2 z){
  if(x)cout << y << endl;
  else cout << z << endl;
}
template<typename T>
bool chmax(T &a, T b){
	if(a<b){
		a=b;
		return true;
	}
	return false;
}
template<typename T>
bool chmin(T &a, T b){
	if(a>b){
		a=b;
		return true;
	}
	return false;
}
template<typename T>
void print(vector<T> &a){
	for(int i=0;i<a.size();i++){
		cout << a[i];
		if(i==(long long)a.size()-1)cout << endl;
		else cout << " ";
	}
}
ll mypow(ll x,ll y){
	ll ret=1;
	while(y>0){
		if(y&1)ret=ret*x%mod;
		x=x*x%mod;
		y>>=1;
	}
	return ret;
}
int main(){
	string s,t;
	cin >> s >> t;
	vector<int> a((int)max(s.size(),t.size()));
	rep(i,a.size())a[i]=(i<s.size()? s[i]-'0':0)+(i<t.size()? t[i]-'0':0);
	vector<int> b((int)a.size()+1);
	for(int i=1;i<=a.size();i++)b[i]=a[i-1];
	for(int i=a.size()-1;i>=0;i++){
		b[i-1]+=b[i]/10;
		b[i]%=10;
	}
	rep(i,b.size())cout << b[i];
	cout << endl;
}
0