結果

問題 No.2393 Bit Grid Connected Component
ユーザー miya145592miya145592
提出日時 2023-07-28 21:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,752 KB
実行使用メモリ 87,096 KB
最終ジャッジ日時 2024-10-06 18:24:25
合計ジャッジ時間 2,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,904 KB
testcase_01 AC 33 ms
53,008 KB
testcase_02 AC 34 ms
52,004 KB
testcase_03 AC 35 ms
53,024 KB
testcase_04 AC 34 ms
52,288 KB
testcase_05 AC 34 ms
52,276 KB
testcase_06 AC 34 ms
53,484 KB
testcase_07 AC 33 ms
52,616 KB
testcase_08 AC 33 ms
52,572 KB
testcase_09 AC 34 ms
52,336 KB
testcase_10 AC 34 ms
52,136 KB
testcase_11 AC 34 ms
52,772 KB
testcase_12 AC 33 ms
52,584 KB
testcase_13 AC 38 ms
59,580 KB
testcase_14 AC 90 ms
77,340 KB
testcase_15 AC 98 ms
77,708 KB
testcase_16 AC 122 ms
79,772 KB
testcase_17 AC 187 ms
86,968 KB
testcase_18 AC 187 ms
87,096 KB
testcase_19 AC 184 ms
87,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
XY = [list(map(int, input().split())) for _ in range(T)]
for x, y in XY:
    ans = 0
    if x%4==0:
        r = y
        while (x>>(r+1))&1==1:
            r+=1
        now = 1<<r
        while now>0:
            ans+=now
            now//=2
        print(ans)
    elif x%4==1:
        if y==0:
            print(1)
        else:
            r = y
            while (x>>(r+1))&1==1:
                r+=1
            now = 1<<r
            while now>0:
                ans+=now
                now//=2
            print(ans)
    else:
        r = y
        while (x>>(r+1))&1==1:
            r+=1
        now = 1<<r
        while now>0:
            ans+=now
            now//=2
        print(ans)

0