結果

問題 No.698 ペアでチームを作ろう
ユーザー DrDrpilotDrDrpilot
提出日時 2022-08-18 17:39:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 182 ms / 1,000 ms
コード長 255 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-06 11:03:51
合計ジャッジ時間 2,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 41 ms
10,624 KB
testcase_05 AC 160 ms
10,496 KB
testcase_06 AC 164 ms
10,624 KB
testcase_07 AC 179 ms
10,624 KB
testcase_08 AC 182 ms
10,496 KB
testcase_09 AC 174 ms
10,752 KB
testcase_10 AC 176 ms
10,496 KB
testcase_11 AC 176 ms
10,624 KB
testcase_12 AC 180 ms
10,496 KB
testcase_13 AC 180 ms
10,624 KB
testcase_14 AC 173 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
ans=0
def f(now,a):
    global ans
    if len(a)==2:
        now+=(a[0]^a[1])
        ans=max(ans,now)
        return
    for i in range(1,len(a)):
        f(now+(a[0]^a[i]),a[1:i]+a[i+1:])
f(0,a)
print(ans)
0