結果

問題 No.699 ペアでチームを作ろう2
ユーザー convexineqconvexineq
提出日時 2021-03-30 03:43:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 1,000 ms
コード長 288 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 76,872 KB
最終ジャッジ日時 2024-05-07 08:33:23
合計ジャッジ時間 2,909 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,692 KB
testcase_01 AC 37 ms
53,380 KB
testcase_02 AC 49 ms
63,584 KB
testcase_03 AC 37 ms
52,532 KB
testcase_04 AC 86 ms
76,080 KB
testcase_05 AC 144 ms
76,592 KB
testcase_06 AC 145 ms
76,576 KB
testcase_07 AC 145 ms
76,492 KB
testcase_08 AC 147 ms
76,568 KB
testcase_09 AC 155 ms
76,872 KB
testcase_10 AC 147 ms
76,480 KB
testcase_11 AC 147 ms
76,444 KB
testcase_12 AC 144 ms
76,472 KB
testcase_13 AC 148 ms
76,660 KB
testcase_14 AC 150 ms
76,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())

def dfs(k,v):
    if k==0:
        return v
    c = 0
    idx = (k&-k).bit_length() - 1
    k ^= 1<<idx
    for i in range(idx+1,n):
        if k>>i&1:
            c = max(c,dfs(k^(1<<i),v^(a[idx]+a[i])))
    return c

print(dfs(2**n-1,0))
0