結果

問題 No.698 ペアでチームを作ろう
ユーザー GrayCoderGrayCoder
提出日時 2018-07-22 20:59:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 517 ms / 1,000 ms
コード長 809 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-06-07 20:17:51
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 66 ms
11,008 KB
testcase_05 AC 427 ms
11,904 KB
testcase_06 AC 434 ms
11,904 KB
testcase_07 AC 498 ms
16,000 KB
testcase_08 AC 503 ms
16,000 KB
testcase_09 AC 517 ms
15,872 KB
testcase_10 AC 510 ms
16,000 KB
testcase_11 AC 511 ms
16,128 KB
testcase_12 AC 501 ms
15,872 KB
testcase_13 AC 499 ms
16,000 KB
testcase_14 AC 497 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    global A, Ret
    n = int(input())
    A = tuple(map(int, input().split()))

    Ret = []
    fp(n)
    print(max(Ret))

def fp(n, d=0, dd=0, idx=0):
    nh = n // 2
    if not d:
        d = [0] * nh
    if not dd:
        dd = [0] * n
    if idx == n:
        pwr = [0] * nh
        for i in range(n):
            pwr[dd[i]] ^= A[i]
        Ret.append(sum(pwr))
        return

    for i in range(nh):
        if d[i] == 0:
            d[i] = 1
            dd[idx] = i
            fp(n, d, dd, idx + 1)
            d[i] = 0
            break

    for i in range(nh):
        if d[i] == 1:
            d[i] = 2
            dd[idx] = i
            fp(n, d, dd, idx + 1)
            d[i] = 1

main()
0