結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー hir355hir355
提出日時 2021-01-22 21:42:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,184 KB
最終ジャッジ日時 2024-06-08 14:02:13
合計ジャッジ時間 9,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,820 KB
testcase_01 AC 37 ms
52,884 KB
testcase_02 AC 39 ms
53,016 KB
testcase_03 AC 38 ms
53,100 KB
testcase_04 AC 37 ms
52,588 KB
testcase_05 AC 37 ms
53,568 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 38 ms
53,756 KB
testcase_08 AC 39 ms
53,988 KB
testcase_09 AC 37 ms
52,892 KB
testcase_10 AC 37 ms
52,528 KB
testcase_11 AC 37 ms
53,084 KB
testcase_12 AC 39 ms
52,676 KB
testcase_13 AC 38 ms
52,808 KB
testcase_14 AC 48 ms
61,772 KB
testcase_15 AC 48 ms
61,808 KB
testcase_16 AC 40 ms
53,220 KB
testcase_17 AC 48 ms
61,064 KB
testcase_18 AC 39 ms
53,280 KB
testcase_19 AC 53 ms
64,192 KB
testcase_20 AC 48 ms
61,144 KB
testcase_21 AC 38 ms
53,812 KB
testcase_22 AC 53 ms
64,096 KB
testcase_23 AC 76 ms
76,108 KB
testcase_24 AC 101 ms
75,848 KB
testcase_25 AC 253 ms
75,888 KB
testcase_26 AC 57 ms
67,304 KB
testcase_27 AC 54 ms
66,368 KB
testcase_28 AC 250 ms
76,072 KB
testcase_29 AC 70 ms
73,156 KB
testcase_30 AC 78 ms
75,872 KB
testcase_31 AC 80 ms
76,060 KB
testcase_32 AC 65 ms
69,636 KB
testcase_33 AC 254 ms
76,108 KB
testcase_34 AC 256 ms
75,924 KB
testcase_35 AC 254 ms
75,892 KB
testcase_36 AC 253 ms
75,892 KB
testcase_37 AC 256 ms
75,936 KB
testcase_38 AC 251 ms
75,832 KB
testcase_39 AC 250 ms
75,964 KB
testcase_40 AC 252 ms
75,992 KB
testcase_41 AC 250 ms
76,092 KB
testcase_42 AC 250 ms
75,916 KB
testcase_43 AC 38 ms
52,004 KB
testcase_44 AC 242 ms
76,064 KB
testcase_45 AC 37 ms
53,096 KB
testcase_46 AC 250 ms
76,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = [list(map(int, input().split())) for _ in range(n)]
m = -10 ** 10
res = []
for i in range(1, 1 << n):
    t = []
    ans = 0
    for j in range(n):
        if(i >> j) & 1:
            t.append(j)
            ans += a[j]
    for j in range(len(t)):
        for k in range(j + 1, len(t)):
            ans += b[t[j]][t[k]]
    if m < ans:
        m = ans
        res = t[:]
print(m)
print(*(x + 1 for x in res))
0