結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,804 KB
testcase_01 AC 35 ms
52,456 KB
testcase_02 AC 64 ms
76,324 KB
testcase_03 AC 37 ms
52,904 KB
testcase_04 AC 99 ms
76,276 KB
testcase_05 AC 632 ms
77,004 KB
testcase_06 AC 601 ms
77,148 KB
testcase_07 AC 644 ms
76,828 KB
testcase_08 AC 596 ms
77,440 KB
testcase_09 AC 654 ms
77,368 KB
testcase_10 AC 549 ms
76,876 KB
testcase_11 AC 636 ms
76,892 KB
testcase_12 AC 610 ms
77,432 KB
testcase_13 AC 585 ms
76,948 KB
testcase_14 AC 612 ms
77,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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