結果

問題 No.698 ペアでチームを作ろう
ユーザー irumo8202irumo8202
提出日時 2022-01-28 11:50:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 1,000 ms
コード長 441 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-06-08 18:33:04
合計ジャッジ時間 2,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,456 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 52 ms
64,256 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 56 ms
75,616 KB
testcase_05 AC 87 ms
75,904 KB
testcase_06 AC 88 ms
75,852 KB
testcase_07 AC 96 ms
75,780 KB
testcase_08 AC 100 ms
75,648 KB
testcase_09 AC 100 ms
75,648 KB
testcase_10 AC 96 ms
75,776 KB
testcase_11 AC 96 ms
76,032 KB
testcase_12 AC 102 ms
75,808 KB
testcase_13 AC 101 ms
75,776 KB
testcase_14 AC 95 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def dfs(tot, used):
    if used == (1 << N) - 1:
        return tot

    res = 0
    for i in range(N):
        if used >> i & 1:
            continue
        for j in range(i + 1, N):
            if used >> j & 1:
                continue
            tmp = dfs(tot + (A[i] ^ A[j]), used | 1 << i | 1 << j)
            res = max(res, tmp)
        break
    return res


print(dfs(0, 0))
0