結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-30 18:55:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-06-11 08:23:58
合計ジャッジ時間 8,511 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 33 ms
52,192 KB
testcase_07 AC 33 ms
52,352 KB
testcase_08 AC 32 ms
52,224 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 34 ms
52,480 KB
testcase_11 AC 32 ms
52,224 KB
testcase_12 AC 33 ms
51,840 KB
testcase_13 AC 32 ms
52,352 KB
testcase_14 AC 41 ms
61,184 KB
testcase_15 AC 41 ms
61,184 KB
testcase_16 AC 34 ms
53,248 KB
testcase_17 AC 49 ms
61,568 KB
testcase_18 AC 34 ms
52,352 KB
testcase_19 AC 52 ms
63,872 KB
testcase_20 AC 46 ms
61,184 KB
testcase_21 AC 36 ms
52,096 KB
testcase_22 AC 51 ms
63,360 KB
testcase_23 AC 77 ms
76,032 KB
testcase_24 AC 105 ms
76,032 KB
testcase_25 AC 268 ms
75,904 KB
testcase_26 AC 59 ms
66,816 KB
testcase_27 AC 59 ms
65,280 KB
testcase_28 AC 257 ms
76,160 KB
testcase_29 AC 69 ms
73,472 KB
testcase_30 AC 81 ms
76,160 KB
testcase_31 AC 79 ms
76,160 KB
testcase_32 AC 61 ms
69,888 KB
testcase_33 AC 266 ms
76,160 KB
testcase_34 AC 265 ms
75,904 KB
testcase_35 AC 267 ms
76,032 KB
testcase_36 AC 285 ms
76,288 KB
testcase_37 AC 261 ms
76,160 KB
testcase_38 AC 268 ms
76,032 KB
testcase_39 AC 260 ms
76,032 KB
testcase_40 AC 261 ms
76,032 KB
testcase_41 AC 256 ms
76,032 KB
testcase_42 AC 258 ms
76,160 KB
testcase_43 AC 33 ms
51,968 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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