結果

問題 No.698 ペアでチームを作ろう
ユーザー DrDrpilotDrDrpilot
提出日時 2022-08-18 17:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 1,000 ms
コード長 255 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,512 KB
最終ジャッジ日時 2024-10-06 11:03:24
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,140 KB
testcase_01 AC 37 ms
53,624 KB
testcase_02 AC 46 ms
61,620 KB
testcase_03 AC 38 ms
53,160 KB
testcase_04 AC 62 ms
71,984 KB
testcase_05 AC 99 ms
76,160 KB
testcase_06 AC 94 ms
76,088 KB
testcase_07 AC 93 ms
76,512 KB
testcase_08 AC 93 ms
76,200 KB
testcase_09 AC 94 ms
76,512 KB
testcase_10 AC 93 ms
76,248 KB
testcase_11 AC 96 ms
76,056 KB
testcase_12 AC 94 ms
76,424 KB
testcase_13 AC 94 ms
76,012 KB
testcase_14 AC 96 ms
75,824 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