結果

問題 No.1246 ANDORゲーム(max)
ユーザー 👑 rin204rin204
提出日時 2022-07-06 21:30:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 503 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-06-02 10:27:29
合計ジャッジ時間 9,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,456 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 35 ms
51,584 KB
testcase_11 AC 89 ms
75,904 KB
testcase_12 AC 66 ms
69,504 KB
testcase_13 AC 75 ms
72,704 KB
testcase_14 AC 92 ms
75,904 KB
testcase_15 AC 93 ms
76,160 KB
testcase_16 AC 478 ms
90,496 KB
testcase_17 AC 477 ms
90,496 KB
testcase_18 AC 481 ms
90,496 KB
testcase_19 AC 482 ms
90,496 KB
testcase_20 AC 489 ms
90,496 KB
testcase_21 AC 474 ms
90,624 KB
testcase_22 AC 503 ms
90,496 KB
testcase_23 AC 83 ms
90,752 KB
testcase_24 AC 415 ms
89,728 KB
testcase_25 AC 404 ms
89,856 KB
testcase_26 AC 440 ms
90,112 KB
testcase_27 AC 97 ms
89,600 KB
testcase_28 AC 415 ms
90,880 KB
testcase_29 AC 421 ms
90,624 KB
testcase_30 AC 398 ms
90,368 KB
testcase_31 AC 128 ms
88,320 KB
testcase_32 AC 130 ms
88,832 KB
testcase_33 AC 128 ms
88,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, t = map(int, input().split())
A = list(map(int, input().split()))

dp = {t:0}
for a in A:
    ndp = {}
    for k, v in dp.items():
        nk = k & a
        nv = v + abs(nk - k)
        ndp[nk] = max(ndp.get(nk, 0), nv)
        nk = k | a
        nv = v + abs(nk - k)
        ndp[nk] = max(ndp.get(nk, 0), nv)
    dp = ndp
print(max(dp.values()))
0