結果
問題 | No.3057 A xor B = C |
ユーザー | ok |
提出日時 | 2020-04-01 22:39:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 747 bytes |
コンパイル時間 | 665 ms |
コンパイル使用メモリ | 79,336 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 11:57:59 |
合計ジャッジ時間 | 1,070 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> #include<utility> using namespace std; #define int long long #define endl "\n" constexpr long long INF = (long long)1e18; constexpr long long MOD = 1'000'000'007; struct fast_io { fast_io(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); }; } fio; signed main(){ cout<<fixed<<setprecision(10); string A, B; string C; cin>>A>>B; C.resize(max(A.size(), B.size()), '0'); for(int i = A.size()-1, j = B.size()-1, k = C.size()-1; k >= 0; i--,j--, k--){ if(i < 0) C[k] = B[j]; else if(j < 0) C[k] = A[i]; else { if(A[i] != B[j]) C[k] = '1'; else C[k] = '0'; } } cout<<C<<endl; return 0; }