結果

問題 No.2086 A+B問題
ユーザー nystnyst
提出日時 2022-09-30 22:06:13
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 80,028 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-24 15:39:05
合計ジャッジ時間 1,795 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

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