結果
問題 | No.2393 Bit Grid Connected Component |
ユーザー |
|
提出日時 | 2023-07-28 22:47:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 157 ms / 2,000 ms |
コード長 | 419 bytes |
コンパイル時間 | 1,728 ms |
コンパイル使用メモリ | 166,088 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-06 20:27:09 |
合計ジャッジ時間 | 3,335 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 20 |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:29:29: warning: 'p' may be used uninitialized [-Wmaybe-uninitialized] 29 | cout << (1LL<<p)-1 << endl; | ~~~~^~~~ main.cpp:21:20: note: 'p' was declared here 21 | ll p; | ^
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;typedef pair<int,int> P;#define REP(i,n) for(int i=0;i<int(n);i++)int main(void){cin.tie(nullptr); ios_base::sync_with_stdio(false);ll i,j,k;int T;cin >> T;while(T--){ll x,y;cin >> x >> y;ll p;for(j=y;j<=60;j++){if((x & (1LL<<j))==0LL){p=j;break;}}cout << (1LL<<p)-1 << endl;}return 0;}