結果

問題 No.699 ペアでチームを作ろう2
ユーザー AEnAEn
提出日時 2022-06-01 13:55:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 1,000 ms
コード長 325 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-09-21 01:29:29
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 63 ms
69,376 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 95 ms
76,160 KB
testcase_05 AC 208 ms
76,928 KB
testcase_06 AC 213 ms
77,184 KB
testcase_07 AC 213 ms
76,928 KB
testcase_08 AC 210 ms
77,184 KB
testcase_09 AC 213 ms
76,800 KB
testcase_10 AC 218 ms
77,184 KB
testcase_11 AC 218 ms
76,928 KB
testcase_12 AC 223 ms
77,056 KB
testcase_13 AC 227 ms
77,696 KB
testcase_14 AC 242 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**9)

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

def dfs(sets, p):
    ans = []
    if not sets:
        return p
    m = min(sets)
    sets ^= {m}
    for i in sets:
        ans.append(dfs(sets^{i}, p ^ (A[m]+A[i])))
    return max(ans)

sets = set(range(N))
print(dfs(sets, 0))
0