結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-22 21:26:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 983 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 1,331 ms
コンパイル使用メモリ 86,816 KB
実行使用メモリ 77,308 KB
最終ジャッジ日時 2023-08-27 17:22:17
合計ジャッジ時間 24,409 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,096 KB
testcase_01 AC 76 ms
71,508 KB
testcase_02 AC 75 ms
71,204 KB
testcase_03 AC 78 ms
71,180 KB
testcase_04 AC 76 ms
71,576 KB
testcase_05 AC 74 ms
71,224 KB
testcase_06 AC 78 ms
71,420 KB
testcase_07 AC 78 ms
71,244 KB
testcase_08 AC 78 ms
71,084 KB
testcase_09 AC 77 ms
71,392 KB
testcase_10 AC 77 ms
71,212 KB
testcase_11 AC 77 ms
71,236 KB
testcase_12 AC 77 ms
71,236 KB
testcase_13 AC 77 ms
71,436 KB
testcase_14 AC 126 ms
76,452 KB
testcase_15 AC 90 ms
76,548 KB
testcase_16 AC 86 ms
76,356 KB
testcase_17 AC 90 ms
76,512 KB
testcase_18 AC 77 ms
71,088 KB
testcase_19 AC 93 ms
76,700 KB
testcase_20 AC 89 ms
76,328 KB
testcase_21 AC 76 ms
71,252 KB
testcase_22 AC 95 ms
76,644 KB
testcase_23 AC 189 ms
77,144 KB
testcase_24 AC 262 ms
77,296 KB
testcase_25 AC 978 ms
76,980 KB
testcase_26 AC 99 ms
76,600 KB
testcase_27 AC 98 ms
76,708 KB
testcase_28 AC 974 ms
77,284 KB
testcase_29 AC 133 ms
77,056 KB
testcase_30 AC 191 ms
77,164 KB
testcase_31 AC 190 ms
77,136 KB
testcase_32 AC 112 ms
77,180 KB
testcase_33 AC 982 ms
77,152 KB
testcase_34 AC 973 ms
76,944 KB
testcase_35 AC 981 ms
77,196 KB
testcase_36 AC 978 ms
76,912 KB
testcase_37 AC 973 ms
77,092 KB
testcase_38 AC 973 ms
77,276 KB
testcase_39 AC 977 ms
77,140 KB
testcase_40 AC 983 ms
77,136 KB
testcase_41 AC 978 ms
77,096 KB
testcase_42 AC 982 ms
76,904 KB
testcase_43 AC 76 ms
71,252 KB
testcase_44 AC 980 ms
77,308 KB
testcase_45 AC 77 ms
71,336 KB
testcase_46 AC 976 ms
76,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = -1
res = -1
for i in range(2**n):
    X = [0]*n
    temp = 0
    S = set()
    for j in range(n):
        if (i >> j) & 1:
            X[j] = 1
            temp += A[j]
            S.add(j)
    for j in range(n-1):
        for k in range(j+1, n):
            if j in S and k in S:
                temp += B[j][k]
    if temp >= ans:
        ans =temp
        res = S
print(ans)
res = list(res)
res = [a+1 for a in res]
print(*res)
0