結果

問題 No.698 ペアでチームを作ろう
ユーザー ああいいああいい
提出日時 2022-01-28 01:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 1,000 ms
コード長 512 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-06-08 00:44:27
合計ジャッジ時間 2,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 55 ms
62,336 KB
testcase_03 AC 39 ms
51,456 KB
testcase_04 AC 68 ms
75,776 KB
testcase_05 AC 102 ms
75,776 KB
testcase_06 AC 101 ms
75,648 KB
testcase_07 AC 101 ms
75,136 KB
testcase_08 AC 102 ms
75,904 KB
testcase_09 AC 98 ms
75,904 KB
testcase_10 AC 101 ms
75,776 KB
testcase_11 AC 100 ms
75,776 KB
testcase_12 AC 103 ms
75,392 KB
testcase_13 AC 103 ms
75,776 KB
testcase_14 AC 102 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

import sys
sys.setrecursionlimit(10 ** 8)
_max = 0
def calc(S = 0,now = 0):
    global _max
    
    if S == (1 << N) - 1:
        if now > _max:
            _max = now
        return
    for j in range(N):
        maskj = 1 << j
        if maskj & S == 0:
            index = j
            break
    b = S ^ maskj
    for u in range(N):
        masku = 1 << u
        if b & masku == 0:
            calc(b ^ masku,now + (A[index] ^ A[u]))
calc()
print(_max)
0