結果

問題 No.698 ペアでチームを作ろう
ユーザー 👑 KazunKazun
提出日時 2021-03-09 04:39:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-10-10 18:09:33
合計ジャッジ時間 2,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,144 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 44 ms
58,880 KB
testcase_05 AC 58 ms
62,848 KB
testcase_06 AC 54 ms
64,512 KB
testcase_07 AC 53 ms
64,192 KB
testcase_08 AC 53 ms
64,256 KB
testcase_09 AC 55 ms
64,000 KB
testcase_10 AC 55 ms
64,512 KB
testcase_11 AC 54 ms
64,512 KB
testcase_12 AC 54 ms
64,512 KB
testcase_13 AC 54 ms
64,256 KB
testcase_14 AC 54 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(S=0):
    if Memo[S]!=-1:
        return Memo[S]

    for i in range(N):
        if S&(1<<i)==0:
            break

    X=0
    for j in range(i+1,N):
        if S&(1<<j):
            continue
        X=max(X,(A[i]^A[j])+f(S|(1<<i)|(1<<j)))
    Memo[S]=X
    return X

N=int(input())
A=list(map(int,input().split()))
Memo=[-1]*(1<<N)
Memo[-1]=0
print(f())
0