結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー roarisroaris
提出日時 2021-01-23 18:17:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 82,760 KB
実行使用メモリ 76,348 KB
最終ジャッジ日時 2024-06-10 02:05:02
合計ジャッジ時間 9,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,280 KB
testcase_01 AC 31 ms
53,968 KB
testcase_02 AC 30 ms
53,528 KB
testcase_03 AC 31 ms
52,824 KB
testcase_04 AC 31 ms
52,616 KB
testcase_05 AC 31 ms
52,412 KB
testcase_06 AC 31 ms
53,588 KB
testcase_07 AC 31 ms
53,348 KB
testcase_08 AC 31 ms
52,552 KB
testcase_09 AC 30 ms
53,412 KB
testcase_10 AC 33 ms
53,120 KB
testcase_11 AC 34 ms
52,216 KB
testcase_12 AC 35 ms
54,316 KB
testcase_13 AC 32 ms
54,068 KB
testcase_14 AC 39 ms
62,396 KB
testcase_15 AC 39 ms
62,004 KB
testcase_16 AC 33 ms
53,096 KB
testcase_17 AC 39 ms
61,624 KB
testcase_18 AC 32 ms
53,328 KB
testcase_19 AC 50 ms
65,912 KB
testcase_20 AC 48 ms
61,808 KB
testcase_21 AC 34 ms
53,940 KB
testcase_22 AC 51 ms
64,448 KB
testcase_23 AC 67 ms
76,172 KB
testcase_24 AC 85 ms
76,292 KB
testcase_25 AC 223 ms
76,348 KB
testcase_26 AC 54 ms
66,688 KB
testcase_27 AC 49 ms
65,692 KB
testcase_28 AC 228 ms
76,276 KB
testcase_29 AC 63 ms
72,716 KB
testcase_30 AC 71 ms
76,216 KB
testcase_31 AC 67 ms
75,992 KB
testcase_32 AC 54 ms
71,324 KB
testcase_33 AC 223 ms
76,136 KB
testcase_34 AC 221 ms
76,172 KB
testcase_35 AC 223 ms
76,108 KB
testcase_36 AC 219 ms
75,972 KB
testcase_37 AC 219 ms
76,116 KB
testcase_38 AC 234 ms
76,152 KB
testcase_39 AC 223 ms
76,164 KB
testcase_40 AC 223 ms
75,928 KB
testcase_41 AC 224 ms
75,860 KB
testcase_42 AC 218 ms
76,084 KB
testcase_43 AC 31 ms
52,244 KB
testcase_44 AC 214 ms
75,976 KB
testcase_45 AC 32 ms
52,492 KB
testcase_46 AC 223 ms
75,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = [list(map(int, input().split())) for _ in range(N)]
M = -10**18

for S in range(1, 1<<N):
    l = []
    score = 0
    
    for i in range(N):
        if (S>>i)&1:
            l.append(i)
            score += A[i]
    
    for i in range(len(l)):
        for j in range(i+1, len(l)):
            score += B[l[i]][l[j]]
    
    if score>M:
        M = score
        ans = l

print(M)
print(*list(map(lambda x: x+1, ans)))
0