結果

問題 No.2393 Bit Grid Connected Component
ユーザー yanagikkyanagikk
提出日時 2023-07-29 00:30:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,092 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 87,344 KB
最終ジャッジ日時 2024-10-06 23:35:50
合計ジャッジ時間 4,709 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,204 KB
testcase_01 AC 37 ms
51,756 KB
testcase_02 AC 36 ms
51,632 KB
testcase_03 AC 36 ms
52,788 KB
testcase_04 AC 37 ms
52,996 KB
testcase_05 AC 36 ms
52,420 KB
testcase_06 AC 35 ms
53,448 KB
testcase_07 AC 37 ms
52,132 KB
testcase_08 AC 35 ms
52,184 KB
testcase_09 AC 36 ms
52,476 KB
testcase_10 AC 35 ms
52,808 KB
testcase_11 AC 36 ms
52,448 KB
testcase_12 AC 36 ms
53,432 KB
testcase_13 AC 36 ms
53,812 KB
testcase_14 AC 99 ms
76,972 KB
testcase_15 AC 103 ms
76,684 KB
testcase_16 AC 1,092 ms
79,880 KB
testcase_17 AC 619 ms
87,344 KB
testcase_18 AC 606 ms
87,092 KB
testcase_19 AC 465 ms
85,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
ans = []
for _ in range(T):
    x, y = list(map(int, input().split()))
    y_max = y
    while True:
        x_bin = format(x, 'b')[::-1]
        if y_max > len(x_bin)-1 or x_bin[y_max] == "0":
            break
        y_max += 1
    
    ans.append(2**y_max - 1)
        
print(*ans, sep="\n")
0