結果
| 問題 |
No.2086 A+B問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-30 22:06:13 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 684 bytes |
| コンパイル時間 | 961 ms |
| コンパイル使用メモリ | 81,140 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-22 23:48:49 |
| 合計ジャッジ時間 | 1,598 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
using namespace std;
const int initv = 100001;
int main(){
string a,b;
cin >> a >> b;
int n = a.size();
int m = b.size();
string s;
for(int i=0;i<abs(m-n);i++) s.push_back('0');
if(n<m) a = s+a;
else b = s+b;
int carry = 0;
vector<int> ans;
for(int i=max(n,m)-1;0<=i;i--){
int a_ = a[i]-'0';
int b_ = b[i]-'0';
int sum = a_+b_+carry;
ans.push_back(sum%10);
sum/=10;
carry = sum%10;
}
if(carry) ans.push_back(carry);
reverse(ans.begin(),ans.end());
for(auto x:ans) cout << x;
cout << endl;
}