結果

問題 No.698 ペアでチームを作ろう
ユーザー H20H20
提出日時 2021-05-27 10:31:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 498 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 76,216 KB
最終ジャッジ日時 2024-11-06 06:14:02
合計ジャッジ時間 1,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,596 KB
testcase_01 AC 39 ms
53,288 KB
testcase_02 AC 58 ms
65,324 KB
testcase_03 AC 39 ms
52,408 KB
testcase_04 AC 63 ms
72,008 KB
testcase_05 AC 77 ms
75,680 KB
testcase_06 AC 83 ms
75,872 KB
testcase_07 AC 84 ms
75,804 KB
testcase_08 AC 83 ms
76,216 KB
testcase_09 AC 84 ms
75,900 KB
testcase_10 AC 84 ms
75,796 KB
testcase_11 AC 84 ms
76,100 KB
testcase_12 AC 83 ms
75,808 KB
testcase_13 AC 81 ms
76,148 KB
testcase_14 AC 84 ms
75,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = list(map(int,input().split()))
    dp = [0]*(1<<N)
    for s in range(0, 1<<N):#集合を添字の小さい順に試す
        for i in range(N):#全ての要素のペアを考える
            for j in range(i+1,N):
                if ((s>>i)&1)==0 and ((s>>j)&1)==0:#i in not s and j in not s
                    if dp[s+(1<<i)+(1<<j)]<dp[s]+(A[i]^A[j]):
                        dp[s+(1<<i)+(1<<j)]=dp[s]+(A[i]^A[j])
    return dp[-1]
print(main())    
0