結果

問題 No.699 ペアでチームを作ろう2
ユーザー lloyzlloyz
提出日時 2023-11-11 00:05:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 1,000 ms
コード長 598 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-09-26 02:29:12
合計ジャッジ時間 3,344 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 69 ms
68,736 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 81 ms
76,032 KB
testcase_05 AC 200 ms
76,160 KB
testcase_06 AC 202 ms
76,032 KB
testcase_07 AC 201 ms
76,544 KB
testcase_08 AC 202 ms
75,776 KB
testcase_09 AC 203 ms
75,904 KB
testcase_10 AC 204 ms
76,032 KB
testcase_11 AC 203 ms
76,160 KB
testcase_12 AC 197 ms
75,904 KB
testcase_13 AC 194 ms
76,032 KB
testcase_14 AC 197 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)

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

def dfs(Used, curr):
    Used = list(Used)
    if min(Used) == 1:
        return curr
    ans = 0
    for i in range(n):
        if Used[i] == 0:
            for j in range(i + 1, n):
                if Used[j] == 0:
                    Used[i] = 1
                    Used[j] = 1
                    ans = max(ans, dfs(tuple(Used), curr ^ (A[i] + A[j])))
                    Used[i] = 0
                    Used[j] = 0
            break
    return ans

Used = [0 for _ in range(n)]
print(dfs(Used, 0))
0