結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー zyxwzyxw
提出日時 2021-02-02 20:18:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,692 KB
実行使用メモリ 76,144 KB
最終ジャッジ日時 2024-06-29 23:52:47
合計ジャッジ時間 7,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,812 KB
testcase_01 AC 38 ms
52,272 KB
testcase_02 AC 31 ms
52,628 KB
testcase_03 AC 31 ms
53,220 KB
testcase_04 AC 34 ms
52,340 KB
testcase_05 AC 32 ms
52,456 KB
testcase_06 AC 32 ms
52,504 KB
testcase_07 AC 35 ms
52,020 KB
testcase_08 AC 31 ms
52,756 KB
testcase_09 AC 30 ms
52,088 KB
testcase_10 AC 32 ms
52,152 KB
testcase_11 AC 31 ms
52,684 KB
testcase_12 AC 37 ms
52,568 KB
testcase_13 AC 35 ms
52,364 KB
testcase_14 AC 43 ms
62,724 KB
testcase_15 AC 43 ms
61,692 KB
testcase_16 AC 33 ms
54,080 KB
testcase_17 AC 41 ms
62,568 KB
testcase_18 AC 32 ms
52,012 KB
testcase_19 AC 43 ms
63,768 KB
testcase_20 AC 39 ms
62,752 KB
testcase_21 AC 32 ms
52,180 KB
testcase_22 AC 43 ms
63,904 KB
testcase_23 AC 64 ms
75,556 KB
testcase_24 AC 87 ms
76,088 KB
testcase_25 AC 223 ms
75,488 KB
testcase_26 AC 49 ms
66,788 KB
testcase_27 AC 45 ms
65,272 KB
testcase_28 AC 219 ms
75,800 KB
testcase_29 AC 55 ms
70,072 KB
testcase_30 AC 63 ms
75,444 KB
testcase_31 AC 66 ms
75,852 KB
testcase_32 AC 50 ms
68,728 KB
testcase_33 AC 221 ms
76,020 KB
testcase_34 AC 220 ms
75,720 KB
testcase_35 AC 218 ms
76,144 KB
testcase_36 AC 232 ms
75,712 KB
testcase_37 AC 227 ms
76,024 KB
testcase_38 AC 231 ms
75,704 KB
testcase_39 AC 222 ms
75,796 KB
testcase_40 AC 225 ms
75,864 KB
testcase_41 AC 221 ms
75,948 KB
testcase_42 AC 226 ms
75,504 KB
testcase_43 AC 33 ms
52,404 KB
testcase_44 AC 241 ms
75,340 KB
testcase_45 AC 32 ms
52,424 KB
testcase_46 AC 220 ms
75,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=[list(map(int,input().split())) for i in range(N)]
ans=-10**20
ans_li=[]
for i in range(2**N):
    ans_pre=0
    ans_li_pre=[]
    for j in range(N):
        if (i>>j)&1:
            ans_li_pre.append(j+1)
            ans_pre+=A[j]
    for j in range(len(ans_li_pre)-1):
        for k in range(j+1,len(ans_li_pre)):
            ans_pre+=B[ans_li_pre[j]-1][ans_li_pre[k]-1]
    if ans_pre>=ans:
        ans=ans_pre
        ans_li=sorted(ans_li_pre)
print(ans)
print(*ans_li)
0