結果
問題 | No.2323 Nafmo、A+Bをする |
ユーザー | namor |
提出日時 | 2023-05-28 14:11:19 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 352 bytes |
コンパイル時間 | 1,835 ms |
コンパイル使用メモリ | 169,520 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 23:52:37 |
合計ジャッジ時間 | 2,676 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h> using ll = long long; using namespace std; #define rep(i, a, b) for (ll i = a; i < ll(b); ++i) int main() { bitset<30> a, b; cin >> a >> b; auto c = a ^ b; int ans = 0; int x = 1; rep(i, 0, 30) { if (c[i] == 1) { ans += x; } x *= 2; } cout << ans << endl; }