結果

問題 No.1246 ANDORゲーム(max)
ユーザー 👑 tute7627tute7627
提出日時 2020-08-04 19:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 835 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 204,816 KB
最終ジャッジ日時 2024-09-14 19:48:12
合計ジャッジ時間 13,156 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,872 KB
testcase_01 AC 38 ms
51,940 KB
testcase_02 AC 37 ms
52,208 KB
testcase_03 AC 39 ms
52,384 KB
testcase_04 AC 38 ms
52,560 KB
testcase_05 AC 40 ms
53,136 KB
testcase_06 AC 39 ms
53,292 KB
testcase_07 AC 39 ms
52,732 KB
testcase_08 AC 39 ms
52,572 KB
testcase_09 AC 39 ms
52,744 KB
testcase_10 AC 39 ms
52,548 KB
testcase_11 AC 72 ms
74,172 KB
testcase_12 AC 58 ms
66,332 KB
testcase_13 AC 60 ms
67,464 KB
testcase_14 AC 86 ms
78,816 KB
testcase_15 AC 87 ms
79,120 KB
testcase_16 AC 811 ms
200,548 KB
testcase_17 AC 828 ms
200,504 KB
testcase_18 AC 834 ms
200,652 KB
testcase_19 AC 823 ms
200,696 KB
testcase_20 AC 835 ms
200,680 KB
testcase_21 AC 829 ms
200,424 KB
testcase_22 AC 833 ms
201,036 KB
testcase_23 AC 110 ms
100,732 KB
testcase_24 AC 788 ms
204,816 KB
testcase_25 AC 737 ms
204,456 KB
testcase_26 AC 740 ms
204,692 KB
testcase_27 AC 127 ms
99,232 KB
testcase_28 AC 717 ms
196,752 KB
testcase_29 AC 711 ms
196,372 KB
testcase_30 AC 710 ms
196,744 KB
testcase_31 AC 170 ms
104,688 KB
testcase_32 AC 162 ms
104,948 KB
testcase_33 AC 171 ms
104,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,t = map(int,input().split())
a = list(map(int,input().split()))
dp = []
for i in range(n+1):
    dp.append({})
dp[0][t] = 0
for i in range(n):
    for now, score in dp[i].items():
        for j in range(2):
            nxt = now & a[i]
            if j == 1:
                nxt = now | a[i]
            nxtscore = score + abs(now - nxt)
            if not (nxt in dp[i+1]) or dp[i+1][nxt] < nxtscore:
                dp[i+1][nxt] = nxtscore
print(max(dp[n].values()))
0