結果

問題 No.2393 Bit Grid Connected Component
ユーザー loop0919loop0919
提出日時 2023-09-30 19:16:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 76,628 KB
最終ジャッジ日時 2024-07-23 13:02:10
合計ジャッジ時間 3,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,320 KB
testcase_01 AC 36 ms
52,272 KB
testcase_02 AC 35 ms
52,700 KB
testcase_03 AC 35 ms
53,368 KB
testcase_04 AC 35 ms
53,348 KB
testcase_05 AC 35 ms
52,960 KB
testcase_06 AC 36 ms
52,700 KB
testcase_07 AC 39 ms
52,624 KB
testcase_08 AC 35 ms
53,444 KB
testcase_09 AC 35 ms
53,380 KB
testcase_10 AC 35 ms
53,092 KB
testcase_11 AC 38 ms
53,744 KB
testcase_12 AC 36 ms
52,496 KB
testcase_13 AC 37 ms
53,720 KB
testcase_14 AC 94 ms
76,612 KB
testcase_15 AC 95 ms
76,328 KB
testcase_16 AC 141 ms
76,492 KB
testcase_17 AC 303 ms
76,408 KB
testcase_18 AC 323 ms
76,628 KB
testcase_19 AC 312 ms
76,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    x, y = map(int, input().split())
    for i in range(y, 61):
        if (x >> i) & 1 == 0:
            break
    print((1 << i) - 1)
0