結果
問題 | No.2323 Nafmo、A+Bをする |
ユーザー | HIcoder |
提出日時 | 2023-05-28 14:11:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 799 bytes |
コンパイル時間 | 833 ms |
コンパイル使用メモリ | 84,016 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-08 04:53:18 |
合計ジャッジ時間 | 1,586 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<int,int> P; typedef pair<int,P> PP; const ll MOD=998244353; int main(){ string A,B; cin>>A; cin>>B; while(A.size()>B.size()){ B='0'+B; } while(B.size()>A.size()){ A='0'+A; } //reverse(A.begin(),A.end()); //reverse(B.begin(),B.end()); //cout<<"A="<<A<<endl; //cout<<"B="<<B<<endl; int len=A.size(); int ans=0; for(int i=len-1;i>=0;i--){ int a=A[i]-'0'; int b=B[i]-'0'; int c=((a+b)&1)<<((len-1)-i); ans+=c; } cout<<ans<<endl; }