結果

問題 No.2393 Bit Grid Connected Component
ユーザー loop0919loop0919
提出日時 2023-09-30 19:15:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 173 bytes
コンパイル時間 1,095 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 77,024 KB
最終ジャッジ日時 2024-07-23 13:01:04
合計ジャッジ時間 4,363 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,688 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
51,904 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 36 ms
51,840 KB
testcase_12 AC 37 ms
51,840 KB
testcase_13 WA -
testcase_14 AC 96 ms
76,544 KB
testcase_15 AC 98 ms
76,212 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

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