結果

問題 No.698 ペアでチームを作ろう
ユーザー hamachi470hamachi470
提出日時 2021-09-02 00:21:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 314 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,056 KB
最終ジャッジ日時 2024-11-28 22:03:39
合計ジャッジ時間 2,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,584 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 63 ms
66,688 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 61 ms
66,048 KB
testcase_05 AC 93 ms
72,704 KB
testcase_06 AC 116 ms
76,056 KB
testcase_07 AC 102 ms
75,904 KB
testcase_08 AC 95 ms
73,344 KB
testcase_09 AC 103 ms
76,032 KB
testcase_10 AC 100 ms
75,648 KB
testcase_11 AC 94 ms
73,728 KB
testcase_12 AC 107 ms
76,032 KB
testcase_13 AC 103 ms
75,904 KB
testcase_14 AC 100 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(x) for x in input().split()]

dp = [0]*(2**N)
for bit in range(2**N):
  for x in range(N-1):
    if bit>>x & 1:
      continue
    for y in range(x+1, N):
      if bit>>y & 1:
        continue
      bn = bit+2**x+2**y
      dp[bn] = max(dp[bn], dp[bit] + (A[x] ^ A[y]))

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