結果

問題 No.698 ペアでチームを作ろう
ユーザー Mr.FukuMr.Fuku
提出日時 2018-06-24 14:08:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 546 ms / 1,000 ms
コード長 593 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-30 22:29:11
合計ジャッジ時間 6,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 36 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 66 ms
10,752 KB
testcase_05 AC 475 ms
10,880 KB
testcase_06 AC 475 ms
10,752 KB
testcase_07 AC 541 ms
10,752 KB
testcase_08 AC 546 ms
10,880 KB
testcase_09 AC 536 ms
10,752 KB
testcase_10 AC 538 ms
10,752 KB
testcase_11 AC 544 ms
10,752 KB
testcase_12 AC 543 ms
10,752 KB
testcase_13 AC 543 ms
10,752 KB
testcase_14 AC 544 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
lst = [int(a) for a in input().split()]

mx = 0
d = [0]*(n//2)
dd = [0]*n

def f(d,dd,index):
    global mx
    if index==n:
        ddd = [0]*(n//2)
        for a in range(n):
            ddd[dd[a]] ^= lst[a]
        mx = max(mx,sum(ddd))
        return
    
    for a in range(n//2):
        if d[a]==0:
            d[a]=1
            dd[index]=a
            f(d,dd,index+1)
            d[a]=0
            break
    
    for a in range(n//2):
        if d[a]==1:
            d[a]=2
            dd[index]=a
            f(d,dd,index+1)
            d[a]=1

f(d,dd,0)
print(mx)
0