結果

問題 No.2393 Bit Grid Connected Component
ユーザー Alex WiceAlex Wice
提出日時 2023-07-28 21:44:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-10-06 18:12:21
合計ジャッジ時間 3,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(r, col):
    ans = 0
    e = col
    while e + 1 < 60 and (r % (2 ** (e + 2)) >= 2 ** (e + 1)):
        e += 1
    return 2 ** (e + 1) - 1


for tc in range(int(input())):
    print(solve(*map(int, input().split())))
0