結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-22 21:44:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 671 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,228 KB
最終ジャッジ日時 2024-06-08 14:07:09
合計ジャッジ時間 10,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 48 ms
60,032 KB
testcase_15 AC 48 ms
60,544 KB
testcase_16 AC 40 ms
52,608 KB
testcase_17 AC 48 ms
59,904 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 55 ms
64,128 KB
testcase_20 AC 48 ms
60,160 KB
testcase_21 AC 38 ms
52,128 KB
testcase_22 AC 56 ms
64,000 KB
testcase_23 AC 78 ms
76,144 KB
testcase_24 AC 101 ms
75,884 KB
testcase_25 AC 268 ms
75,680 KB
testcase_26 AC 62 ms
67,840 KB
testcase_27 AC 56 ms
65,536 KB
testcase_28 AC 268 ms
75,904 KB
testcase_29 AC 69 ms
72,832 KB
testcase_30 AC 79 ms
75,520 KB
testcase_31 AC 79 ms
75,956 KB
testcase_32 AC 62 ms
69,792 KB
testcase_33 AC 262 ms
75,592 KB
testcase_34 AC 264 ms
75,904 KB
testcase_35 AC 267 ms
75,648 KB
testcase_36 AC 266 ms
75,664 KB
testcase_37 AC 265 ms
75,664 KB
testcase_38 AC 262 ms
75,804 KB
testcase_39 AC 263 ms
75,984 KB
testcase_40 AC 260 ms
75,616 KB
testcase_41 AC 261 ms
75,648 KB
testcase_42 AC 266 ms
75,648 KB
testcase_43 AC 38 ms
51,968 KB
testcase_44 AC 254 ms
75,888 KB
testcase_45 AC 36 ms
51,840 KB
testcase_46 AC 266 ms
76,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = [list(map(int, input().split())) for i in range(n)]
cur = -(10 ** 18)
for bit in range(1, 1 << n):
    l = []
    for i in range(n):
        if 1 << i & bit:
            l.append(i)
    leng = len(l)
    cnt = 0
    for i in l:
        cnt += a[i]
    for i in range(leng):
        for j in range(i + 1, leng):
            cnt += b[l[i]][l[j]]
    if cur < cnt:
        ans = l[:]
        cur = cnt
print(cur)
for i in range(len(ans)):
    ans[i] += 1
print(*ans)
0