結果

問題 No.939 and or
ユーザー eSeFeSeF
提出日時 2019-12-03 00:24:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 534 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 199,776 KB
実行使用メモリ 16,840 KB
最終ジャッジ日時 2024-11-25 02:29:04
合計ジャッジ時間 47,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,632 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 TLE -
testcase_03 AC 1 ms
10,016 KB
testcase_04 TLE -
testcase_05 AC 1 ms
10,020 KB
testcase_06 TLE -
testcase_07 AC 1 ms
10,016 KB
testcase_08 TLE -
testcase_09 AC 1 ms
10,020 KB
testcase_10 TLE -
testcase_11 AC 2 ms
10,020 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 2 ms
13,632 KB
testcase_17 TLE -
testcase_18 AC 2 ms
13,636 KB
testcase_19 TLE -
testcase_20 AC 2 ms
13,636 KB
testcase_21 TLE -
testcase_22 AC 2 ms
13,640 KB
testcase_23 AC 1 ms
10,016 KB
testcase_24 AC 2 ms
13,636 KB
testcase_25 AC 2 ms
10,020 KB
testcase_26 AC 2 ms
13,636 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1 ms
6,820 KB
testcase_31 AC 1 ms
10,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
#define MOD (int)1e9+7
#define EPS 1e-8
#define INF 1e9+10
#define INFL 1e18
typedef long long ll;
using namespace std;
int main()
{
  int a,b;
  cin >> a >> b;
  ll ans =1;
  for(int i=0;(1<<i)<=b;i++){
      int msk=(1<<i);
      if((a&msk)!=0){
          if((b&msk)==0){
              cout << 0 << endl;return 0;
          }
          continue;
      }
      else{
          if((b&msk)!=0){
              ans*=2;
          }
      }
  }
  cout << (ans+1)/2 << endl;
}
0