結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | irumo8202 |
提出日時 | 2022-01-28 11:50:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 97 ms / 1,000 ms |
コード長 | 441 bytes |
コンパイル時間 | 2,573 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 75,776 KB |
最終ジャッジ日時 | 2024-06-08 18:33:24 |
合計ジャッジ時間 | 2,179 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,712 KB |
testcase_01 | AC | 34 ms
51,456 KB |
testcase_02 | AC | 49 ms
64,128 KB |
testcase_03 | AC | 37 ms
51,584 KB |
testcase_04 | AC | 56 ms
75,596 KB |
testcase_05 | AC | 94 ms
75,648 KB |
testcase_06 | AC | 91 ms
75,648 KB |
testcase_07 | AC | 97 ms
75,648 KB |
testcase_08 | AC | 96 ms
75,596 KB |
testcase_09 | AC | 95 ms
75,520 KB |
testcase_10 | AC | 89 ms
75,776 KB |
testcase_11 | AC | 92 ms
75,520 KB |
testcase_12 | AC | 93 ms
75,776 KB |
testcase_13 | AC | 91 ms
75,520 KB |
testcase_14 | AC | 88 ms
75,776 KB |
ソースコード
N = int(input()) A = list(map(int, input().split())) def dfs(tot, used): if used == (1 << N) - 1: return tot res = 0 for i in range(N): if used >> i & 1: continue for j in range(i + 1, N): if used >> j & 1: continue tmp = dfs(tot + (A[i] ^ A[j]), used | 1 << i | 1 << j) res = max(res, tmp) break return res print(dfs(0, 0))