結果

問題 No.2844 Birthday Party Decoration
ユーザー hato336hato336
提出日時 2024-08-23 23:21:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 959 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,788 KB
最終ジャッジ日時 2024-08-23 23:21:11
合計ジャッジ時間 1,468 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,772 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
    n,x = map(int,input().split())
    c = list(map(int,input().split()))
    ans = float('INF')
    l = []
    for i in c:
        if (x >> i) & 1 == 1:
            continue
        y = x
        y += 1<<i
        for j in range(i):
            if (y >> j) & 1 == 1:
                y -= 1<<j
        z = x
        z -= 1<<i
        if z < 0:
            z = -10**18
        else:
            for j in range(i):
                if (z >> j) & 1 == 0:
                    z += 1<<j
        l.append([z,y])
    #print(l)
    for i in range(len(l)+1):
        if i == len(l):
            z = x
        else:
            z = l[i][0]
        ma = z
        for j in range(len(l)):
            y = l[j][1]
            if z <= y <= x:
                pass
            else:
                ma = max(ma,y)
        ans = min(ans,(ma-z)*2)
        #rint(i,z,y)
    print(ans)
for i in range(int(input())):
    solve()
0