結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー nohakai3nohakai3
提出日時 2022-07-08 17:29:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 557 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 10,956 KB
実行使用メモリ 12,756 KB
最終ジャッジ日時 2023-08-27 16:38:34
合計ジャッジ時間 9,471 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
12,756 KB
testcase_01 AC 14 ms
8,184 KB
testcase_02 AC 14 ms
8,252 KB
testcase_03 AC 14 ms
8,256 KB
testcase_04 AC 14 ms
8,324 KB
testcase_05 AC 15 ms
8,272 KB
testcase_06 AC 14 ms
8,248 KB
testcase_07 AC 14 ms
8,328 KB
testcase_08 AC 14 ms
8,264 KB
testcase_09 AC 13 ms
8,228 KB
testcase_10 AC 14 ms
8,132 KB
testcase_11 AC 14 ms
8,188 KB
testcase_12 AC 14 ms
8,172 KB
testcase_13 AC 15 ms
8,268 KB
testcase_14 AC 17 ms
8,180 KB
testcase_15 AC 17 ms
8,224 KB
testcase_16 AC 15 ms
8,268 KB
testcase_17 AC 17 ms
8,180 KB
testcase_18 AC 16 ms
8,340 KB
testcase_19 AC 22 ms
8,324 KB
testcase_20 AC 18 ms
8,144 KB
testcase_21 AC 15 ms
8,220 KB
testcase_22 AC 20 ms
8,216 KB
testcase_23 AC 840 ms
8,176 KB
testcase_24 AC 1,849 ms
8,300 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 #

from itertools import product

N = int(input())
A = list(map(int, input().split()))
B = [list(map(int, input().split())) for _ in range(N)]

W = -(10 ** 18)
for bits in product(range(2), repeat=N):
    if sum(bits) == 0:
        continue
    w = 0
    for i in range(N):
        if bits[i] == 1:
            w += A[i]
    for i in range(N):
        for j in range(i + 1, N):
            if bits[i] & bits[j] == 1:
                w += B[i][j]
    if w > W:
        W = w
        max_bits = bits
print(W)
print(*(i + 1 for i in range(N) if max_bits[i] == 1))
0