結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,116 KB
testcase_01 AC 38 ms
53,348 KB
testcase_02 AC 61 ms
67,320 KB
testcase_03 AC 38 ms
53,712 KB
testcase_04 AC 59 ms
66,732 KB
testcase_05 AC 89 ms
73,536 KB
testcase_06 AC 106 ms
76,356 KB
testcase_07 AC 99 ms
76,176 KB
testcase_08 AC 91 ms
74,348 KB
testcase_09 AC 99 ms
76,188 KB
testcase_10 AC 98 ms
76,208 KB
testcase_11 AC 93 ms
73,860 KB
testcase_12 AC 98 ms
76,228 KB
testcase_13 AC 96 ms
76,228 KB
testcase_14 AC 99 ms
76,084 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