結果

問題 No.1246 ANDORゲーム(max)
ユーザー tamatotamato
提出日時 2020-10-02 23:14:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 90,056 KB
最終ジャッジ日時 2024-07-17 23:36:25
合計ジャッジ時間 11,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,188 KB
testcase_01 AC 40 ms
52,412 KB
testcase_02 AC 38 ms
53,152 KB
testcase_03 AC 38 ms
53,000 KB
testcase_04 AC 38 ms
52,640 KB
testcase_05 AC 38 ms
53,204 KB
testcase_06 AC 40 ms
52,548 KB
testcase_07 AC 38 ms
52,940 KB
testcase_08 AC 38 ms
53,440 KB
testcase_09 AC 38 ms
53,812 KB
testcase_10 AC 37 ms
52,692 KB
testcase_11 AC 84 ms
76,152 KB
testcase_12 AC 65 ms
68,492 KB
testcase_13 AC 69 ms
70,140 KB
testcase_14 AC 92 ms
76,560 KB
testcase_15 AC 91 ms
76,060 KB
testcase_16 AC 699 ms
90,056 KB
testcase_17 AC 717 ms
89,564 KB
testcase_18 AC 697 ms
90,016 KB
testcase_19 AC 710 ms
89,824 KB
testcase_20 AC 711 ms
89,648 KB
testcase_21 AC 677 ms
89,680 KB
testcase_22 AC 663 ms
89,752 KB
testcase_23 AC 81 ms
89,856 KB
testcase_24 AC 553 ms
89,208 KB
testcase_25 AC 537 ms
89,416 KB
testcase_26 AC 584 ms
89,332 KB
testcase_27 AC 97 ms
89,072 KB
testcase_28 AC 519 ms
89,708 KB
testcase_29 AC 578 ms
89,744 KB
testcase_30 AC 521 ms
89,656 KB
testcase_31 AC 128 ms
88,520 KB
testcase_32 AC 125 ms
88,804 KB
testcase_33 AC 128 ms
88,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N, T = map(int, input().split())
    A = list(map(int, input().split()))

    X = {T: 0}
    for a in A:
        X_new = {}
        for x in X:
            x_and = x & a
            x_or = x | a
            if x_and not in X_new:
                X_new[x_and] = X[x] + x - x_and
            else:
                X_new[x_and] = max(X_new[x_and], X[x] + x - x_and)
            if x_or not in X_new:
                X_new[x_or] = X[x] + x_or - x
            else:
                X_new[x_or] = max(X_new[x_or], X[x] + x_or - x)
        X = X_new
        #print(X)
    ans = 0
    for x in X:
        ans = max(ans, X[x])
    print(ans)


if __name__ == '__main__':
    main()
0