結果

問題 No.2844 Birthday Party Decoration
ユーザー にしろにしろ
提出日時 2024-08-24 19:15:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 76,348 KB
最終ジャッジ日時 2024-08-24 19:15:22
合計ジャッジ時間 1,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,564 KB
testcase_01 AC 92 ms
76,208 KB
testcase_02 AC 81 ms
76,232 KB
testcase_03 AC 97 ms
76,348 KB
testcase_04 AC 88 ms
76,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n,x=map(int,input().split())
    c=list(map(int,input().split()))
    for I in range(n):
        i=n-I-1
        if (x>>c[i]&1)==False:
            bc=1<<c[i]
            floor=(x//bc)*bc
            ceil=(x//bc+1)*bc
            if(floor==0):
                return (ceil-x)*2
            else:
                return min((ceil-x)*2,(x-(floor-1))*2)
    return 0

t=int(input())
for _ in range(t):
    print(solve())
0