結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ayaoniayaoni
提出日時 2021-01-24 00:43:23
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 846 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-10 11:28:28
合計ジャッジ時間 8,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,288 KB
testcase_01 AC 33 ms
52,208 KB
testcase_02 AC 33 ms
52,548 KB
testcase_03 AC 35 ms
52,604 KB
testcase_04 AC 33 ms
52,840 KB
testcase_05 AC 33 ms
52,560 KB
testcase_06 AC 34 ms
52,968 KB
testcase_07 AC 34 ms
53,080 KB
testcase_08 AC 36 ms
52,940 KB
testcase_09 AC 34 ms
53,012 KB
testcase_10 AC 35 ms
52,884 KB
testcase_11 AC 34 ms
53,056 KB
testcase_12 AC 33 ms
52,740 KB
testcase_13 AC 34 ms
52,736 KB
testcase_14 AC 42 ms
61,456 KB
testcase_15 AC 43 ms
60,860 KB
testcase_16 AC 34 ms
53,152 KB
testcase_17 AC 43 ms
61,604 KB
testcase_18 AC 35 ms
52,644 KB
testcase_19 AC 48 ms
64,588 KB
testcase_20 AC 46 ms
62,436 KB
testcase_21 AC 34 ms
52,808 KB
testcase_22 AC 47 ms
64,228 KB
testcase_23 AC 70 ms
75,916 KB
testcase_24 AC 93 ms
75,972 KB
testcase_25 AC 235 ms
75,928 KB
testcase_26 AC 60 ms
71,148 KB
testcase_27 AC 50 ms
67,788 KB
testcase_28 AC 236 ms
75,540 KB
testcase_29 AC 66 ms
75,588 KB
testcase_30 AC 70 ms
75,816 KB
testcase_31 AC 67 ms
75,880 KB
testcase_32 AC 54 ms
74,444 KB
testcase_33 AC 247 ms
75,884 KB
testcase_34 AC 238 ms
76,188 KB
testcase_35 AC 234 ms
76,220 KB
testcase_36 AC 243 ms
75,656 KB
testcase_37 AC 252 ms
75,912 KB
testcase_38 AC 244 ms
75,896 KB
testcase_39 AC 238 ms
76,144 KB
testcase_40 AC 240 ms
75,704 KB
testcase_41 AC 237 ms
75,880 KB
testcase_42 AC 237 ms
76,216 KB
testcase_43 AC 36 ms
52,588 KB
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

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 = 0
oto = 0
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