結果

問題 No.698 ペアでチームを作ろう
ユーザー flippergoflippergo
提出日時 2024-10-13 12:48:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 1,000 ms
コード長 477 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 79,016 KB
最終ジャッジ日時 2024-10-13 12:48:52
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 38 ms
51,944 KB
testcase_02 AC 68 ms
72,320 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 91 ms
76,176 KB
testcase_05 AC 199 ms
77,824 KB
testcase_06 AC 205 ms
79,016 KB
testcase_07 AC 213 ms
78,212 KB
testcase_08 AC 212 ms
78,532 KB
testcase_09 AC 211 ms
78,276 KB
testcase_10 AC 239 ms
78,496 KB
testcase_11 AC 212 ms
78,232 KB
testcase_12 AC 211 ms
78,648 KB
testcase_13 AC 210 ms
78,536 KB
testcase_14 AC 212 ms
78,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
N = int(input())
A = list(map(int,input().split()))
dp = {}
for z in combinations(range(N),2):
    dp[z] = A[z[0]]^A[z[1]]
for n in range(4,N+1,2):
    for z in combinations(range(N),n):
        dp[z] = 0
        for y in combinations(z,2):
            z1 = list(z)
            z1.remove(y[0])
            z1.remove(y[1])
            z1 = tuple(z1)
            dp[z] = max(dp[z],dp[z1]+(A[y[0]]^A[y[1]]))
ans = tuple(range(N))
print(dp[ans])
0