結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 52 ms
10,752 KB
testcase_05 AC 292 ms
10,752 KB
testcase_06 AC 296 ms
10,624 KB
testcase_07 AC 325 ms
10,880 KB
testcase_08 AC 347 ms
10,752 KB
testcase_09 AC 340 ms
10,880 KB
testcase_10 AC 345 ms
10,752 KB
testcase_11 AC 350 ms
10,880 KB
testcase_12 AC 344 ms
10,880 KB
testcase_13 AC 346 ms
10,752 KB
testcase_14 AC 343 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N,*A = map(int, read().split())

def gen_powers(A):
    if not A:
        yield 0
        return
    for i, x in enumerate(A):
        if not i:
            continue
        pair_power = A[0] + x
        B = A[1:i] + A[i+1:]
        for p in gen_powers(B):
            yield p ^ pair_power

answer = max(gen_powers(A))
print(answer)
0