結果

問題 No.698 ペアでチームを作ろう
ユーザー 杉本雅樹杉本雅樹
提出日時 2024-05-25 20:04:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 591 ms / 1,000 ms
コード長 529 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-05-25 20:04:58
合計ジャッジ時間 7,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 44 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 119 ms
10,880 KB
testcase_05 AC 515 ms
10,880 KB
testcase_06 AC 509 ms
11,008 KB
testcase_07 AC 536 ms
11,520 KB
testcase_08 AC 544 ms
11,520 KB
testcase_09 AC 537 ms
11,392 KB
testcase_10 AC 563 ms
11,392 KB
testcase_11 AC 538 ms
11,392 KB
testcase_12 AC 591 ms
11,392 KB
testcase_13 AC 544 ms
11,520 KB
testcase_14 AC 566 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder No.698 ペアでチームを作ろう
# 解答閲覧


def main():

    N = int(input())

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

    dp = [0]*(2**N+10)
    for n in range(1<<N):
        for i in range(N):
            for j in range(i+1,N):
                if (n & (1<<i)):
                    continue
                if (n & (1 <<j)):
                    continue
                dp[n + 2**i + 2**j] = max(dp[n+2**i+2**j], dp[n] + (A[i]^A[j]))

    
    print(dp[2**N-1])


if __name__ == '__main__':
     main()

0