結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー zyxwzyxw
提出日時 2021-02-02 20:16:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 522 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-06-29 23:52:38
合計ジャッジ時間 8,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
52,204 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 51 ms
61,696 KB
testcase_15 AC 48 ms
61,696 KB
testcase_16 AC 40 ms
52,224 KB
testcase_17 AC 49 ms
62,208 KB
testcase_18 AC 39 ms
52,864 KB
testcase_19 AC 52 ms
63,220 KB
testcase_20 AC 48 ms
61,824 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 51 ms
62,828 KB
testcase_23 AC 75 ms
75,356 KB
testcase_24 AC 102 ms
75,824 KB
testcase_25 AC 252 ms
76,020 KB
testcase_26 AC 56 ms
65,664 KB
testcase_27 AC 52 ms
64,640 KB
testcase_28 AC 253 ms
75,580 KB
testcase_29 AC 63 ms
69,760 KB
testcase_30 AC 74 ms
75,704 KB
testcase_31 AC 77 ms
75,632 KB
testcase_32 AC 59 ms
68,224 KB
testcase_33 AC 253 ms
75,572 KB
testcase_34 AC 251 ms
75,796 KB
testcase_35 AC 251 ms
75,828 KB
testcase_36 AC 249 ms
75,588 KB
testcase_37 AC 248 ms
75,764 KB
testcase_38 AC 252 ms
75,320 KB
testcase_39 AC 252 ms
75,928 KB
testcase_40 AC 253 ms
75,740 KB
testcase_41 AC 254 ms
75,696 KB
testcase_42 AC 252 ms
75,444 KB
testcase_43 AC 38 ms
52,480 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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