結果

問題 No.698 ペアでチームを作ろう
ユーザー titiatitia
提出日時 2023-10-16 02:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 367 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-09-16 22:10:05
合計ジャッジ時間 2,227 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 59 ms
66,560 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 64 ms
67,584 KB
testcase_05 AC 76 ms
68,736 KB
testcase_06 AC 91 ms
75,904 KB
testcase_07 AC 84 ms
71,808 KB
testcase_08 AC 84 ms
72,448 KB
testcase_09 AC 83 ms
72,832 KB
testcase_10 AC 84 ms
72,832 KB
testcase_11 AC 94 ms
75,776 KB
testcase_12 AC 84 ms
72,832 KB
testcase_13 AC 85 ms
72,320 KB
testcase_14 AC 84 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in range(1<<N):
    for j in range(N):
        if i & (1<<j) != 0:
            continue
        for k in range(N):
            if i & (1<<k) != 0:
                continue

            plus=A[j]^A[k]

            DP[i|(1<<j)|(1<<k)]=max(DP[i|(1<<j)|(1<<k)],DP[i]+plus)

print(DP[-1])
            
0