結果

問題 No.699 ペアでチームを作ろう2
ユーザー qibqib
提出日時 2022-12-30 01:27:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 557 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 76,280 KB
最終ジャッジ日時 2024-05-03 19:54:16
合計ジャッジ時間 2,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 59 ms
65,792 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 71 ms
75,776 KB
testcase_05 AC 120 ms
75,776 KB
testcase_06 AC 120 ms
76,280 KB
testcase_07 AC 121 ms
75,648 KB
testcase_08 AC 120 ms
76,032 KB
testcase_09 AC 122 ms
75,904 KB
testcase_10 AC 120 ms
75,648 KB
testcase_11 AC 121 ms
75,776 KB
testcase_12 AC 123 ms
75,648 KB
testcase_13 AC 121 ms
75,776 KB
testcase_14 AC 122 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

pairs = []
used = [False for _ in range(n)]

def dfs():
  if len(pairs) == n // 2:
    ans = 0
    for x in pairs:
      ans ^= x
    return ans
  else:
    for l in range(n):
      if used[l]:
        continue
      used[l] = True

      ans = 0
      for r in range(l + 1, n):
        if used[r]:
          continue

        used[r] = True
        pairs.append(a[l] + a[r])
        ans = max(ans, dfs())
        pairs.pop()
        used[r] = False

      used[l] = False
      return ans

print(dfs())
0