結果

問題 No.698 ペアでチームを作ろう
ユーザー ryomacryomac
提出日時 2024-01-11 22:47:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 76,224 KB
最終ジャッジ日時 2024-09-27 20:40:24
合計ジャッジ時間 2,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,464 KB
testcase_01 AC 39 ms
52,204 KB
testcase_02 AC 62 ms
67,320 KB
testcase_03 AC 39 ms
52,320 KB
testcase_04 AC 60 ms
67,304 KB
testcase_05 AC 85 ms
73,620 KB
testcase_06 AC 100 ms
75,832 KB
testcase_07 AC 99 ms
75,880 KB
testcase_08 AC 108 ms
76,184 KB
testcase_09 AC 99 ms
75,976 KB
testcase_10 AC 99 ms
75,848 KB
testcase_11 AC 105 ms
76,224 KB
testcase_12 AC 98 ms
75,936 KB
testcase_13 AC 98 ms
75,672 KB
testcase_14 AC 97 ms
76,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * (1 << N)
for S in range(1 << N):
    for i in range(N):
        if S & (1 << i):
            continue
        for j in range(i + 1, N):
            if S & (1 << j):
                continue
            dp[S | (1 << i) | (1 << j)] = max(
                dp[S | (1 << i) | (1 << j)], dp[S] + (A[i] ^ A[j])
            )
print(dp[-1])
0