結果

問題 No.698 ペアでチームを作ろう
ユーザー pluto77pluto77
提出日時 2018-08-17 13:43:25
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 310 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 76,604 KB
実行使用メモリ 78,736 KB
最終ジャッジ日時 2024-10-08 15:34:44
合計ジャッジ時間 2,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,284 KB
testcase_01 AC 66 ms
75,672 KB
testcase_02 AC 113 ms
78,208 KB
testcase_03 AC 69 ms
75,412 KB
testcase_04 AC 95 ms
78,516 KB
testcase_05 AC 104 ms
78,736 KB
testcase_06 AC 100 ms
78,632 KB
testcase_07 AC 103 ms
78,636 KB
testcase_08 AC 111 ms
78,624 KB
testcase_09 AC 115 ms
78,352 KB
testcase_10 AC 102 ms
78,488 KB
testcase_11 AC 100 ms
78,508 KB
testcase_12 AC 109 ms
78,624 KB
testcase_13 AC 106 ms
78,268 KB
testcase_14 AC 104 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki698

dp=[0]*(1<<14)
n=int(raw_input())
a=map(int,raw_input().split())
for i in xrange(1<<n):
 if bin(i).count("1")%2:
  continue
 for j in xrange(n):
  if i&(1<<j):
   continue
  for k in xrange(n):
   if i&(1<<k):
    continue
   dp[i|1<<j|1<<k]=max(dp[i|1<<j|1<<k],dp[i]+(a[j]^a[k]))
print dp[(1<<n)-1]
0