結果
問題 | No.2086 A+B問題 |
ユーザー | やう |
提出日時 | 2022-09-30 21:35:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 637 bytes |
コンパイル時間 | 1,796 ms |
コンパイル使用メモリ | 167,440 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-22 22:37:32 |
合計ジャッジ時間 | 2,562 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using ld=long double; using P=pair<ll,ll>; using V=vector<ll>; #define rep(i,n) for(ll i=0;i<n;i++) #define REP(i,n) for(ll i=1;i<=n;i++) int main(){ string a,b; cin >> a >> b; reverse(a.begin(),a.end()); reverse(b.begin(),b.end()); while(a.size()<b.size()) a+='0'; while(b.size()<a.size()) b+='0'; a+='0'; b+='0'; string s; int n=a.size()-1; rep(i,n){ int x=a[i]+b[i]-'0'*2; s+='0'+x%10; if(9<x) a[i+1]++; } if(a[n]=='1') s+='1'; reverse(s.begin(),s.end()); cout << s << endl; }