結果

問題 No.698 ペアでチームを作ろう
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2018-04-29 16:56:39
言語 Python2
(2.7.18)
結果
AC  
実行時間 666 ms / 1,000 ms
コード長 437 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-27 23:33:47
合計ジャッジ時間 7,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 15 ms
6,400 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 58 ms
6,272 KB
testcase_05 AC 648 ms
6,272 KB
testcase_06 AC 641 ms
6,272 KB
testcase_07 AC 655 ms
6,272 KB
testcase_08 AC 658 ms
6,272 KB
testcase_09 AC 658 ms
6,272 KB
testcase_10 AC 654 ms
6,400 KB
testcase_11 AC 663 ms
6,272 KB
testcase_12 AC 658 ms
6,272 KB
testcase_13 AC 647 ms
6,400 KB
testcase_14 AC 666 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
b = map(int,raw_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 i in xrange(n):
			ddd[dd[i]] ^= b[i]
		mx = max(mx,sum(ddd))
		return
	for i in xrange(n/2):
		if d[i] == 0:
			d[i] = 1
			dd[index]=i
			f(d,dd,index+1)
			d[i]=0
			break
	for i in xrange(n/2):
		if d[i] == 1:
			d[i] = 2
			dd[index]=i
			f(d,dd,index+1)
			d[i]=1

f(d,dd,0)
print mx
0