結果

問題 No.2323 Nafmo、A+Bをする
ユーザー w0t0w0t0
提出日時 2023-05-28 14:05:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 992 bytes
コンパイル時間 1,772 ms
コンパイル使用メモリ 202,640 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-08 04:40:12
合計ジャッジ時間 2,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll= long long;
using ull=unsigned long long;
using ldo =long double;
#define rep(i,n,k) for(ll i = k; i < (ll)(n); i++)
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
const ll INF = 1e18;
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;

int main() {
  string A,B,C="";
  cin>>A;
  cin>>B;
  rep(i,max(A.size(),B.size())+1,1){
    if(A.size()-i<0)C.push_back(B[A.size()-i]);
    else if(B.size()-i<0)C.push_back(A[B.size()-i]);
    else{
      if((A[A.size()-i]==B[B.size()-i])and(A[A.size()-i]=='1')){
        C.push_back('0');
      }else if((A[A.size()-i]=='1')or('1'==B[B.size()-i])){
        C.push_back('1');
      }else{
        C.push_back('0');
      }
    }
    
  }
  ll a=0,now=1;
  rep(i,C.size()+1,1){
    if(C[C.size()-i]=='1')a+=now;
    now*=2;
  }
  cout<<a<<endl;
  return 0;
}
0