結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-30 19:05:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-06-11 08:24:07
合計ジャッジ時間 8,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 34 ms
51,968 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 34 ms
52,224 KB
testcase_14 AC 45 ms
61,056 KB
testcase_15 AC 46 ms
60,928 KB
testcase_16 AC 36 ms
52,608 KB
testcase_17 AC 47 ms
60,800 KB
testcase_18 AC 36 ms
52,224 KB
testcase_19 AC 52 ms
63,488 KB
testcase_20 AC 47 ms
60,800 KB
testcase_21 AC 36 ms
51,968 KB
testcase_22 AC 52 ms
63,232 KB
testcase_23 AC 89 ms
75,904 KB
testcase_24 AC 103 ms
75,904 KB
testcase_25 AC 266 ms
75,904 KB
testcase_26 AC 59 ms
66,816 KB
testcase_27 AC 56 ms
65,408 KB
testcase_28 AC 269 ms
76,160 KB
testcase_29 AC 71 ms
73,728 KB
testcase_30 AC 81 ms
75,776 KB
testcase_31 AC 82 ms
76,032 KB
testcase_32 AC 63 ms
69,760 KB
testcase_33 AC 259 ms
76,032 KB
testcase_34 AC 260 ms
75,904 KB
testcase_35 AC 261 ms
75,904 KB
testcase_36 AC 267 ms
76,032 KB
testcase_37 AC 256 ms
76,160 KB
testcase_38 AC 265 ms
76,032 KB
testcase_39 AC 259 ms
75,904 KB
testcase_40 AC 260 ms
76,032 KB
testcase_41 AC 257 ms
75,904 KB
testcase_42 AC 258 ms
75,904 KB
testcase_43 AC 35 ms
52,224 KB
testcase_44 AC 252 ms
76,032 KB
testcase_45 AC 36 ms
51,968 KB
testcase_46 AC 263 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
n=int(input())
a=list(map(int,input().split()))
b=[list(map(int,input().split())) for _ in range(n)]
ans=-10**15
ans_l=[]
for bit in product(range(2),repeat=n):
    tmp=0
    ring=[]
    for i in range(n):
        if bit[i]:
            tmp+=a[i]
            ring.append(i+1)
    if len(ring)>=2:
        for i in range(len(ring)):
            for j in range(i+1,len(ring)):
                tmp+=b[ring[i]-1][ring[j]-1]
    if tmp>=ans:
        ans=tmp
        ans_l=ring
ans_l.sort()
print(ans)
print(*ans_l)
0