結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-01-22 21:42:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 76,408 KB
最終ジャッジ日時 2024-06-08 14:04:21
合計ジャッジ時間 9,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,444 KB
testcase_01 AC 39 ms
52,880 KB
testcase_02 AC 39 ms
53,088 KB
testcase_03 AC 38 ms
52,492 KB
testcase_04 AC 37 ms
52,628 KB
testcase_05 AC 37 ms
52,896 KB
testcase_06 AC 37 ms
52,984 KB
testcase_07 AC 37 ms
53,508 KB
testcase_08 AC 38 ms
52,156 KB
testcase_09 AC 37 ms
52,196 KB
testcase_10 AC 37 ms
52,748 KB
testcase_11 AC 38 ms
52,608 KB
testcase_12 AC 38 ms
52,636 KB
testcase_13 AC 37 ms
53,156 KB
testcase_14 AC 45 ms
61,964 KB
testcase_15 AC 47 ms
62,128 KB
testcase_16 AC 38 ms
52,756 KB
testcase_17 AC 46 ms
61,776 KB
testcase_18 AC 38 ms
52,532 KB
testcase_19 AC 53 ms
64,452 KB
testcase_20 AC 48 ms
60,960 KB
testcase_21 AC 38 ms
53,020 KB
testcase_22 AC 53 ms
64,804 KB
testcase_23 AC 78 ms
75,988 KB
testcase_24 AC 103 ms
76,064 KB
testcase_25 AC 265 ms
76,408 KB
testcase_26 AC 62 ms
68,488 KB
testcase_27 AC 58 ms
65,964 KB
testcase_28 AC 269 ms
76,016 KB
testcase_29 AC 69 ms
73,136 KB
testcase_30 AC 78 ms
75,732 KB
testcase_31 AC 77 ms
75,664 KB
testcase_32 AC 60 ms
70,312 KB
testcase_33 AC 265 ms
75,848 KB
testcase_34 AC 266 ms
76,076 KB
testcase_35 AC 268 ms
75,968 KB
testcase_36 AC 263 ms
75,680 KB
testcase_37 AC 265 ms
76,060 KB
testcase_38 AC 264 ms
76,104 KB
testcase_39 AC 263 ms
75,892 KB
testcase_40 AC 264 ms
75,916 KB
testcase_41 AC 261 ms
75,812 KB
testcase_42 AC 263 ms
75,680 KB
testcase_43 AC 38 ms
53,816 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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 << 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