結果

問題 No.698 ペアでチームを作ろう
ユーザー otsunekootsuneko
提出日時 2024-07-19 00:11:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 301 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 76,396 KB
最終ジャッジ日時 2024-07-19 00:11:12
合計ジャッジ時間 2,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 53 ms
66,944 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 71 ms
76,208 KB
testcase_05 AC 124 ms
76,032 KB
testcase_06 AC 128 ms
75,912 KB
testcase_07 AC 134 ms
76,012 KB
testcase_08 AC 130 ms
76,084 KB
testcase_09 AC 136 ms
75,920 KB
testcase_10 AC 141 ms
76,396 KB
testcase_11 AC 135 ms
76,012 KB
testcase_12 AC 133 ms
76,288 KB
testcase_13 AC 130 ms
75,904 KB
testcase_14 AC 133 ms
76,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*(1<<N)

for s in range(1<<N):
    for i,j in itertools.combinations(range(N),2):
        if not s&(1<<i) and not s&(1<<j):
            dp[s|(1<<i)|(1<<j)] = max(dp[s|(1<<i)|(1<<j)], dp[s]+(A[i]^A[j]))

print(dp[(1<<N)-1])
0