結果

問題 No.698 ペアでチームを作ろう
ユーザー ntudantuda
提出日時 2024-10-20 16:53:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 644 ms / 1,000 ms
コード長 634 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 77,804 KB
最終ジャッジ日時 2024-10-20 16:53:21
合計ジャッジ時間 8,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,036 KB
testcase_01 AC 35 ms
52,960 KB
testcase_02 AC 67 ms
76,040 KB
testcase_03 AC 37 ms
52,532 KB
testcase_04 AC 103 ms
76,192 KB
testcase_05 AC 640 ms
76,956 KB
testcase_06 AC 626 ms
77,216 KB
testcase_07 AC 642 ms
77,204 KB
testcase_08 AC 599 ms
77,804 KB
testcase_09 AC 643 ms
76,788 KB
testcase_10 AC 586 ms
76,772 KB
testcase_11 AC 639 ms
76,968 KB
testcase_12 AC 614 ms
76,952 KB
testcase_13 AC 644 ms
77,064 KB
testcase_14 AC 605 ms
76,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def search(x):
    j = 0
    for i in range(N):
        if NU[i] == True:
            if j == x:
                return i
            j += 1

def dfs(x):
    global ans, sum0
    if x == 0:
        ans = max(ans, sum0)
        return
    a = NU.index(True)
    NU[a] = False
    for b in range(a + 1,N):
        if True not in NU[b:]:
            continue
        c = NU[b:].index(True) + b
        NU[c] = False
        sum0 += A[a] ^ A[c]
        dfs(x - 1)
        sum0 -= A[a] ^ A[c]
        NU[c] = True
    NU[a] = True

N = int(input())
A = list(map(int, input().split()))
NU = [True] * N
ans = 0
sum0 = 0
dfs(N//2)
print(ans)
0