結果

問題 No.699 ペアでチームを作ろう2
ユーザー KazunKazun
提出日時 2021-02-25 03:26:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 1,000 ms
コード長 348 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,300 KB
最終ジャッジ日時 2024-09-25 03:35:10
合計ジャッジ時間 2,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,736 KB
testcase_01 AC 37 ms
52,464 KB
testcase_02 AC 54 ms
66,376 KB
testcase_03 AC 37 ms
52,632 KB
testcase_04 AC 70 ms
75,996 KB
testcase_05 AC 109 ms
83,788 KB
testcase_06 AC 112 ms
83,792 KB
testcase_07 AC 111 ms
84,300 KB
testcase_08 AC 109 ms
83,916 KB
testcase_09 AC 110 ms
84,032 KB
testcase_10 AC 110 ms
84,168 KB
testcase_11 AC 106 ms
84,300 KB
testcase_12 AC 106 ms
84,168 KB
testcase_13 AC 109 ms
83,920 KB
testcase_14 AC 108 ms
84,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(S):
    if S==(1<<N)-1:
        return [0]

    x=0
    while S&(1<<x):
        x+=1

    F=[]
    T=S|(1<<x)
    for y in range(x+1,N):
        if T&(1<<y):
            continue
        B=dfs(T|(1<<y))

        for b in B:
            F.append((A[x]+A[y])^b)
    return F

N=int(input())
A=list(map(int,input().split()))
print(max(dfs(0)))
0