結果

問題 No.698 ペアでチームを作ろう
ユーザー AEnAEn
提出日時 2022-05-20 16:13:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 1,000 ms
コード長 291 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-20 00:13:30
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 59 ms
69,888 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 92 ms
76,288 KB
testcase_05 AC 243 ms
77,012 KB
testcase_06 AC 239 ms
77,276 KB
testcase_07 AC 236 ms
77,340 KB
testcase_08 AC 236 ms
77,312 KB
testcase_09 AC 235 ms
76,960 KB
testcase_10 AC 232 ms
77,312 KB
testcase_11 AC 233 ms
77,568 KB
testcase_12 AC 233 ms
77,184 KB
testcase_13 AC 238 ms
77,056 KB
testcase_14 AC 234 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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