結果

問題 No.2393 Bit Grid Connected Component
ユーザー lloyzlloyz
提出日時 2023-07-28 21:37:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-04-16 05:28:07
合計ジャッジ時間 2,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 44 ms
51,712 KB
testcase_05 AC 44 ms
51,968 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 42 ms
51,968 KB
testcase_10 AC 45 ms
52,096 KB
testcase_11 AC 44 ms
52,480 KB
testcase_12 AC 44 ms
52,224 KB
testcase_13 AC 52 ms
59,392 KB
testcase_14 AC 81 ms
74,880 KB
testcase_15 AC 82 ms
76,160 KB
testcase_16 AC 123 ms
76,160 KB
testcase_17 AC 201 ms
76,160 KB
testcase_18 AC 202 ms
76,544 KB
testcase_19 AC 227 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

Pow2 = [pow(2, i) for i in range(60)]

for _ in range(int(input())):
    x, y = map(int, input().split())
    B = [0 for _ in range(60)]
    xc = x
    for i in range(60):
        xc, r = divmod(xc, 2)
        B[i] = r
    r = y
    while r < 59 and B[r + 1] == 1:
        r += 1
    ans = 0
    for i in range(r + 1):
        ans += Pow2[i]
    print(ans)
0