結果

問題 No.698 ペアでチームを作ろう
ユーザー H20H20
提出日時 2021-05-27 09:44:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 374 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 200,024 KB
最終ジャッジ日時 2024-11-06 05:41:56
合計ジャッジ時間 3,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,964 KB
testcase_01 AC 38 ms
52,140 KB
testcase_02 AC 56 ms
67,356 KB
testcase_03 AC 40 ms
52,284 KB
testcase_04 AC 141 ms
76,948 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
A = list(map(int,input().split()))
C = list(itertools.combinations(range(N), N//2))
ans = 0
for c in C:
    r = list(range(N))
    for i in c:
        r.remove(i)
    P = list(itertools.permutations(r))
    for p in P:
        power=0
        for i in range(N//2):
            power+=A[c[i]]^A[p[i]]
        ans = max(power,ans)
print(ans)
0