結果
問題 | No.2393 Bit Grid Connected Component |
ユーザー | hiro1729 |
提出日時 | 2023-07-21 16:44:43 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 466 bytes |
コンパイル時間 | 2,943 ms |
コンパイル使用メモリ | 242,596 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 18:41:39 |
合計ジャッジ時間 | 3,724 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 11 ms
5,376 KB |
testcase_15 | AC | 15 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
/* T = int(input()) for _ in range(T): x, y = map(int, input().split()) t = ((x + (1 << y)) >> y) << y for i in range(60): if t & (1 << i): print((1 << i) - 1) break */ #include <bits/stdc++.h> using namespace std; int main() { int T, x, y; cin >> T; for (int _ = 0; _ < T; _++) { cin >> x >> y; int t = ((x + (1 << y)) >> y) << y; for (int i = 0; i < 60; i++) { if (t & (1 << i)) { cout << (1 << i) - 1 << '\n'; break; } } } }