結果

問題 No.698 ペアでチームを作ろう
ユーザー rlangevinrlangevin
提出日時 2023-01-31 00:18:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 76,128 KB
最終ジャッジ日時 2024-06-30 07:59:48
合計ジャッジ時間 1,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,024 KB
testcase_01 AC 35 ms
52,832 KB
testcase_02 AC 56 ms
66,468 KB
testcase_03 AC 36 ms
52,740 KB
testcase_04 AC 55 ms
66,344 KB
testcase_05 AC 71 ms
76,016 KB
testcase_06 AC 74 ms
75,868 KB
testcase_07 AC 73 ms
76,100 KB
testcase_08 AC 78 ms
76,128 KB
testcase_09 AC 74 ms
75,860 KB
testcase_10 AC 73 ms
76,000 KB
testcase_11 AC 73 ms
75,684 KB
testcase_12 AC 74 ms
75,860 KB
testcase_13 AC 74 ms
75,980 KB
testcase_14 AC 73 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
N2 = 1 << N
inf = 10 ** 18
dp = [-inf] * N2
dp[0] = 0
for s in range(N2):
    for a in range(N):
        for b in range(a + 1, N):
            if (s >> a) & 1:
                continue
            if (s >> b) & 1:
                continue
            ns = s | (1 << a) | (1 << b)
            dp[ns] = max(dp[ns], dp[s] + (A[a] ^ A[b]))
print(dp[-1])           
0