結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ayaoniayaoni
提出日時 2021-01-24 00:44:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,456 KB
最終ジャッジ日時 2024-06-10 11:29:15
合計ジャッジ時間 8,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,028 KB
testcase_01 AC 37 ms
54,156 KB
testcase_02 AC 33 ms
52,836 KB
testcase_03 AC 34 ms
53,236 KB
testcase_04 AC 33 ms
53,400 KB
testcase_05 AC 40 ms
52,824 KB
testcase_06 AC 35 ms
52,872 KB
testcase_07 AC 34 ms
53,304 KB
testcase_08 AC 36 ms
52,760 KB
testcase_09 AC 34 ms
52,812 KB
testcase_10 AC 34 ms
52,536 KB
testcase_11 AC 33 ms
53,444 KB
testcase_12 AC 33 ms
54,220 KB
testcase_13 AC 35 ms
53,860 KB
testcase_14 AC 43 ms
62,820 KB
testcase_15 AC 41 ms
61,336 KB
testcase_16 AC 37 ms
54,304 KB
testcase_17 AC 41 ms
62,444 KB
testcase_18 AC 35 ms
54,000 KB
testcase_19 AC 51 ms
65,384 KB
testcase_20 AC 43 ms
62,664 KB
testcase_21 AC 34 ms
52,860 KB
testcase_22 AC 48 ms
65,328 KB
testcase_23 AC 71 ms
76,048 KB
testcase_24 AC 93 ms
75,900 KB
testcase_25 AC 253 ms
75,856 KB
testcase_26 AC 59 ms
72,172 KB
testcase_27 AC 52 ms
66,920 KB
testcase_28 AC 242 ms
76,080 KB
testcase_29 AC 66 ms
75,872 KB
testcase_30 AC 68 ms
75,832 KB
testcase_31 AC 70 ms
76,320 KB
testcase_32 AC 55 ms
74,148 KB
testcase_33 AC 245 ms
75,824 KB
testcase_34 AC 250 ms
76,172 KB
testcase_35 AC 244 ms
76,188 KB
testcase_36 AC 249 ms
75,776 KB
testcase_37 AC 249 ms
76,276 KB
testcase_38 AC 246 ms
76,108 KB
testcase_39 AC 241 ms
76,036 KB
testcase_40 AC 238 ms
75,980 KB
testcase_41 AC 241 ms
76,016 KB
testcase_42 AC 250 ms
76,352 KB
testcase_43 AC 36 ms
52,956 KB
testcase_44 AC 243 ms
76,456 KB
testcase_45 AC 35 ms
54,188 KB
testcase_46 AC 243 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N = I()
A = LI()
B = [LI() for _ in range(N)]

ans = -1
oto = []
for i in range(1,1<<N):
    X = [j for j in range(N) if (i>>j) & 1]
    l = len(X)
    score = 0
    for x in X:
        score += A[x]
    for j in range(l-1):
        for k in range(j+1,l):
            score += B[X[j]][X[k]]
    if ans < score:
        ans = score
        oto = X

print(ans)
ANS = [x+1 for x in oto]
print(*ANS)
0