結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-30 18:55:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 532 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 10,924 KB
実行使用メモリ 12,848 KB
最終ジャッジ日時 2023-09-02 01:45:42
合計ジャッジ時間 9,200 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
12,776 KB
testcase_01 AC 16 ms
8,200 KB
testcase_02 AC 15 ms
8,116 KB
testcase_03 AC 14 ms
8,272 KB
testcase_04 AC 15 ms
8,160 KB
testcase_05 AC 16 ms
8,272 KB
testcase_06 AC 16 ms
8,172 KB
testcase_07 AC 16 ms
8,248 KB
testcase_08 AC 15 ms
8,112 KB
testcase_09 AC 15 ms
8,256 KB
testcase_10 AC 15 ms
8,252 KB
testcase_11 AC 15 ms
8,328 KB
testcase_12 AC 15 ms
8,184 KB
testcase_13 AC 16 ms
8,300 KB
testcase_14 AC 16 ms
8,160 KB
testcase_15 AC 16 ms
8,188 KB
testcase_16 AC 16 ms
8,116 KB
testcase_17 AC 17 ms
8,168 KB
testcase_18 AC 15 ms
8,164 KB
testcase_19 AC 19 ms
8,208 KB
testcase_20 AC 17 ms
8,208 KB
testcase_21 AC 15 ms
8,132 KB
testcase_22 AC 19 ms
8,164 KB
testcase_23 AC 442 ms
8,188 KB
testcase_24 AC 923 ms
8,268 KB
testcase_25 TLE -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます

ソースコード

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