結果

問題 No.698 ペアでチームを作ろう
ユーザー ryusukeryusuke
提出日時 2024-05-08 14:06:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 414 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-05-08 14:07:16
合計ジャッジ時間 17,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 77 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 311 ms
10,880 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*(1 << N)
for i in range(1 << N):
    for a in range(N):
        for b in range(N):
            if a == b:
                continue
            if (i >> a) & 1:
                continue
            if (i >> b) & 1:
                continue
            dp[i | (1 << a) | (1 << b)] = max(dp[i | (1 << a) | (1 << b)], dp[i] + (A[a] ^ A[b]))

print(dp[-1])
0