結果

問題 No.698 ペアでチームを作ろう
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-10 20:56:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 1,000 ms
コード長 443 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-07-08 08:16:42
合計ジャッジ時間 1,907 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,456 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 70 ms
66,816 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 72 ms
68,352 KB
testcase_05 AC 76 ms
70,400 KB
testcase_06 AC 80 ms
71,936 KB
testcase_07 AC 79 ms
71,168 KB
testcase_08 AC 80 ms
70,912 KB
testcase_09 AC 88 ms
74,240 KB
testcase_10 AC 83 ms
71,680 KB
testcase_11 AC 97 ms
76,032 KB
testcase_12 AC 93 ms
76,160 KB
testcase_13 AC 78 ms
71,680 KB
testcase_14 AC 91 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*(1<<n)
for s in range(1<<n):
    p = 0
    for i in range(n):
        if (s>>i)&1:
            p += 1
    if p%2 != 0:
        continue
    for i in range(n-1):
        if (s>>i)&1:
            continue
        for j in range(i+1, n):
            if (s>>j)&1:
                continue
            dp[s|1<<i|1<<j] = max(dp[s|1<<i|1<<j], dp[s]+(A[i]^A[j]))
#print(dp)
print(dp[-1])
0