結果
問題 | No.939 and or |
ユーザー | koi_kotya |
提出日時 | 2019-12-02 00:16:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 797 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 168,172 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 23:51:32 |
合計ジャッジ時間 | 2,421 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> P; #define p_ary(ary,a,b) do { cout << "["; for (int count = (a);count < (b);++count) cout << ary[count] << ((b)-1 == count ? "" : ", "); cout << "]\n"; } while(0) #define p_map(map,it) do {cout << "{";for (auto (it) = map.begin();;++(it)) {if ((it) == map.end()) {cout << "}\n";break;}else cout << "" << (it)->first << "=>" << (it)->second << ", ";}}while(0) int main() { int a,b; cin >> a >> b; int cnt = 0; bool ok = true; for (int i = 0;i < 31;++i) { if (((a>>i)&1) == 0 && ((b>>i)&1)) cnt++; if (((a>>i)&1) && ((b>>i)&1) == 0) ok = false; } if (ok) { if (cnt) cnt--; cout << (1<<cnt) << endl; } else { cout << 0 << endl; } }