結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー c-yanc-yan
提出日時 2021-01-22 21:38:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 554 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 10,912 KB
実行使用メモリ 12,620 KB
最終ジャッジ日時 2023-08-27 17:59:59
合計ジャッジ時間 9,842 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,248 KB
testcase_01 AC 15 ms
8,224 KB
testcase_02 AC 15 ms
8,240 KB
testcase_03 AC 15 ms
8,168 KB
testcase_04 AC 16 ms
8,252 KB
testcase_05 AC 15 ms
8,084 KB
testcase_06 AC 16 ms
8,096 KB
testcase_07 AC 15 ms
8,248 KB
testcase_08 AC 15 ms
8,252 KB
testcase_09 AC 16 ms
8,104 KB
testcase_10 AC 15 ms
8,244 KB
testcase_11 AC 16 ms
8,104 KB
testcase_12 AC 15 ms
8,252 KB
testcase_13 AC 16 ms
8,168 KB
testcase_14 AC 18 ms
8,088 KB
testcase_15 AC 18 ms
8,088 KB
testcase_16 AC 17 ms
8,080 KB
testcase_17 AC 18 ms
8,156 KB
testcase_18 AC 16 ms
8,232 KB
testcase_19 AC 21 ms
8,256 KB
testcase_20 AC 18 ms
8,096 KB
testcase_21 AC 16 ms
8,172 KB
testcase_22 AC 21 ms
8,180 KB
testcase_23 AC 918 ms
8,188 KB
testcase_24 AC 1,917 ms
8,100 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)]

result = -(10 ** 18)
for t in product(range(2), repeat=N):
    if sum(t) == 0:
        continue
    v = 0
    for i in range(N):
        if t[i] == 1:
            v += A[i]
    for i in range(N):
        for j in range(i + 1, N):
            if t[i] & t[j] == 1:
                v += B[i][j]
    if v > result:
        result = v
        max_t = t
print(result)
print(*(i + 1 for i in range(N) if max_t[i] == 1))
0