結果
問題 | No.822 Bitwise AND |
ユーザー | tekihei2317 |
提出日時 | 2019-04-26 23:08:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 256 ms / 2,000 ms |
コード長 | 734 bytes |
コンパイル時間 | 1,738 ms |
コンパイル使用メモリ | 166,660 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 18:15:24 |
合計ジャッジ時間 | 4,569 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 |
ソースコード
#include<bits/stdc++.h> #define REP(i,n) for(int i=0;i<(n);i++) #define ALL(v) (v).begin(),(v).end() #define SZ(x) ((int)(x).size()) #define int long long using namespace std; signed main() { int N,K; cin>>N>>K; int top=-1; for(int i=0;i<20;i++){ if(N>>i&1){ top=i; } } int minDiff=1<<(top+1); for(int i=0;i<top;i++){ if(~N>>i&1){ minDiff-=1<<i; } } if(K>=minDiff) cout<<"INF"<<endl; else{ int ans=0; for(int x=0;x<(1<<20);x++){ for(int d=0;d<=K;d++){ int y=x+d; if((x&y)==N){ ans++; } } } cout<<ans<<endl; } }