結果

問題 No.2844 Birthday Party Decoration
ユーザー tassei903tassei903
提出日時 2024-08-23 21:22:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 73,072 KB
最終ジャッジ日時 2024-08-23 21:22:06
合計ジャッジ時間 1,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,072 KB
testcase_01 AC 64 ms
72,088 KB
testcase_02 AC 63 ms
72,216 KB
testcase_03 AC 57 ms
71,592 KB
testcase_04 AC 60 ms
73,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


# 2 ** (c[i] + 1) * k + 2 ** c[i] >= x
def f(c, x):
    return ((x - 2 ** c- 1) // (2 ** (c + 1)) + 1) * (2 ** (c + 1)) + 2 ** c

# 2 ** (c[i] + 1) * k - 1 <= x

def g(c, x):
    if x < 2 ** c:
        return -10 ** 18
    return ((x + 1) // (2 ** (c + 1))) * (2 ** (c + 1)) - 1
# 1, 3, 
# 2, 3, 6, 7
for _ in range(ni()):
    n, x = na()
    c = na()
    
    for i in range(n-1,-1,-1):
        if x >> c[i] & 1:
            continue
        else:
            #print(c[i])
            print(2 * min(f(c[i], x) - x, x - g(c[i], x)))
            break
    else:
        print(0)
0