結果

問題 No.699 ペアでチームを作ろう2
ユーザー GrayCoderGrayCoder
提出日時 2019-09-28 05:04:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 325 ms / 1,000 ms
コード長 656 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-09-25 10:51:22
合計ジャッジ時間 4,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 50 ms
11,136 KB
testcase_05 AC 264 ms
11,776 KB
testcase_06 AC 270 ms
11,776 KB
testcase_07 AC 303 ms
16,000 KB
testcase_08 AC 320 ms
15,872 KB
testcase_09 AC 321 ms
16,000 KB
testcase_10 AC 325 ms
16,000 KB
testcase_11 AC 319 ms
16,000 KB
testcase_12 AC 320 ms
16,000 KB
testcase_13 AC 316 ms
16,000 KB
testcase_14 AC 317 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import xor
from collections import deque
from functools import reduce
from sys import stdin

def pair(lst):
    def func(a, b):
        n = len(a)
        if n == 2:
            ret.append(reduce(xor, b + [a[0] + a[1]]))
            return
        a0 = a.popleft()
        for _ in [0] * (n - 1):
            ai = a.popleft()
            arg2 = b + [a0 + ai]
            func(a.copy(), arg2)
            a.append(ai)
    lst = deque(lst)
    ret = []
    func(lst, [])
    return ret

def main():
    input = lambda: stdin.readline()
    N = int(input())
    A = list(map(int, input().split()))

    ans = max(pair(A))
    print(ans)

main()
0