結果
問題 | No.2393 Bit Grid Connected Component |
ユーザー | hari64 |
提出日時 | 2023-07-28 21:27:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,290 bytes |
コンパイル時間 | 2,278 ms |
コンパイル使用メモリ | 200,820 KB |
実行使用メモリ | 10,020 KB |
最終ジャッジ日時 | 2024-10-06 17:36:16 |
合計ジャッジ時間 | 7,068 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,576 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | AC | 9 ms
5,248 KB |
testcase_15 | AC | 12 ms
5,248 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | TLE | - |
ソースコード
#ifndef hari64 #include <bits/stdc++.h> #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #define debug(...) #else #include "util/viewer.hpp" #define debug(...) viewer::_debug(__LINE__, #__VA_ARGS__, __VA_ARGS__) #endif // clang-format off using namespace std; using ll = long long; using ld = long double; using pii = pair<int, int>; using pll = pair<ll, ll>; template <typename T> using vc = vector<T>; template <typename T> using vvc = vector<vc<T>>; template <typename T> using vvvc = vector<vvc<T>>; using vi = vc<int>; using vll = vc<ll>; using vpii = vc<pii>; using vpll = vc<pll>; using vvi = vc<vi>; using vvll = vc<vll>; using vvpi = vc<vpii>; using vvpll = vc<vpll>; constexpr int INF = 1001001001; constexpr long long INFll = 1001001001001001001; template <class T> bool chmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; } template <class T> bool chmin(T& a, const T& b) { return a > b ? a = b, 1 : 0; } // clang-format on int main() { cin.tie(0); ios::sync_with_stdio(false); int T; cin >> T; while (T--) { ll X, Y; cin >> X >> Y; assert(X & (1 << Y)); while (X & (1 << (Y + 1))) { Y++; } cout << (1 << (Y + 1)) - 1 << endl; } return 0; }