結果

問題 No.2393 Bit Grid Connected Component
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-25 07:14:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,576 KB
実行使用メモリ 77,300 KB
最終ジャッジ日時 2024-06-06 05:15:57
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,748 KB
testcase_01 AC 43 ms
56,144 KB
testcase_02 AC 41 ms
56,268 KB
testcase_03 AC 41 ms
55,388 KB
testcase_04 AC 40 ms
55,672 KB
testcase_05 AC 41 ms
55,368 KB
testcase_06 AC 39 ms
55,684 KB
testcase_07 AC 45 ms
55,500 KB
testcase_08 AC 42 ms
55,640 KB
testcase_09 AC 41 ms
55,512 KB
testcase_10 AC 44 ms
55,048 KB
testcase_11 AC 43 ms
56,392 KB
testcase_12 AC 44 ms
56,328 KB
testcase_13 AC 44 ms
56,712 KB
testcase_14 AC 74 ms
76,952 KB
testcase_15 AC 81 ms
76,936 KB
testcase_16 AC 86 ms
77,064 KB
testcase_17 AC 132 ms
77,300 KB
testcase_18 AC 124 ms
76,996 KB
testcase_19 AC 123 ms
76,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

def answer():
    
    x,y = map(int,input().split())
    for i in range(y,61):
        if (x>>i)&1:
            continue
        else:
            break
    if i==y:
        print(0)
        return
    print(pow(2,i)-1)
for _ in range(int(input())):
    answer()
0