結果
問題 | No.2323 Nafmo、A+Bをする |
ユーザー | shobonvip |
提出日時 | 2023-05-28 13:32:37 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 397 bytes |
コンパイル時間 | 4,005 ms |
コンパイル使用メモリ | 261,860 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 20:46:17 |
合計ジャッジ時間 | 4,765 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; int main(){ string a; cin >> a; string b; cin >> b; int x = 0, y = 0; for (int i=0; i<(int)a.size(); i++){ x *= 2; x += a[i] - '0'; } for (int i=0; i<(int)b.size(); i++){ y *= 2; y += b[i] - '0'; } int z = x ^ y; cout << z << endl; }