結果

問題 No.2393 Bit Grid Connected Component
ユーザー mattu34mattu34
提出日時 2023-09-04 23:59:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-06-22 21:12:21
合計ジャッジ時間 3,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 38 ms
54,364 KB
testcase_03 AC 38 ms
54,400 KB
testcase_04 AC 39 ms
54,400 KB
testcase_05 AC 41 ms
54,016 KB
testcase_06 AC 38 ms
54,016 KB
testcase_07 AC 38 ms
54,016 KB
testcase_08 AC 37 ms
54,528 KB
testcase_09 AC 39 ms
54,144 KB
testcase_10 AC 42 ms
53,888 KB
testcase_11 AC 44 ms
54,016 KB
testcase_12 AC 42 ms
54,656 KB
testcase_13 AC 44 ms
54,528 KB
testcase_14 AC 92 ms
77,064 KB
testcase_15 AC 97 ms
77,276 KB
testcase_16 AC 138 ms
77,016 KB
testcase_17 AC 310 ms
76,852 KB
testcase_18 AC 307 ms
77,440 KB
testcase_19 AC 291 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import heapq
import bisect

INF = float("inf")

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