結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー hiragnhiragn
提出日時 2022-11-24 09:02:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 658 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 11,824 KB
実行使用メモリ 14,404 KB
最終ジャッジ日時 2023-10-26 01:03:22
合計ジャッジ時間 9,951 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
14,404 KB
testcase_01 AC 31 ms
10,056 KB
testcase_02 AC 30 ms
10,056 KB
testcase_03 AC 30 ms
10,056 KB
testcase_04 AC 29 ms
10,056 KB
testcase_05 AC 29 ms
10,056 KB
testcase_06 AC 35 ms
10,056 KB
testcase_07 AC 29 ms
10,056 KB
testcase_08 AC 29 ms
10,056 KB
testcase_09 AC 29 ms
10,056 KB
testcase_10 AC 30 ms
10,056 KB
testcase_11 AC 30 ms
10,056 KB
testcase_12 AC 29 ms
10,056 KB
testcase_13 AC 31 ms
10,056 KB
testcase_14 AC 32 ms
10,056 KB
testcase_15 AC 31 ms
10,056 KB
testcase_16 AC 30 ms
10,056 KB
testcase_17 AC 33 ms
10,056 KB
testcase_18 AC 30 ms
10,056 KB
testcase_19 AC 34 ms
10,060 KB
testcase_20 AC 33 ms
10,056 KB
testcase_21 AC 31 ms
10,056 KB
testcase_22 AC 35 ms
10,060 KB
testcase_23 AC 586 ms
10,068 KB
testcase_24 AC 1,273 ms
10,068 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    a = list(map(int, input().split()))
    b = [list(map(int, input().split())) for _ in range(n)]

    inf = 1 << 60
    ans = -inf
    ans_bit = 0
    for bit in range(1, 1 << n):
        res = 0
        for i in range(n):
            if bit & (1 << i):
                res += a[i]
        for i in range(n):
            for j in range(i + 1, n):
                if bit & (1 << i) and bit & (1 << j):
                    res += b[i][j]
        if ans < res:
            ans = res
            ans_bit = bit

    print(ans)
    print(*[i + 1 for i in range(n) if ans_bit & (1 << i)])


if __name__ == "__main__":
    main()
0