結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,884 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 31 ms
51,840 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 33 ms
52,352 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 32 ms
52,088 KB
testcase_10 AC 32 ms
52,096 KB
testcase_11 AC 32 ms
52,096 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 35 ms
52,480 KB
testcase_14 AC 42 ms
61,568 KB
testcase_15 AC 41 ms
61,696 KB
testcase_16 AC 32 ms
52,352 KB
testcase_17 AC 41 ms
61,696 KB
testcase_18 AC 34 ms
52,096 KB
testcase_19 AC 45 ms
63,488 KB
testcase_20 AC 43 ms
61,568 KB
testcase_21 AC 36 ms
52,352 KB
testcase_22 AC 48 ms
63,232 KB
testcase_23 AC 64 ms
76,196 KB
testcase_24 AC 88 ms
75,548 KB
testcase_25 AC 222 ms
75,776 KB
testcase_26 AC 49 ms
65,664 KB
testcase_27 AC 45 ms
64,256 KB
testcase_28 AC 220 ms
75,928 KB
testcase_29 AC 55 ms
69,504 KB
testcase_30 AC 68 ms
75,776 KB
testcase_31 AC 69 ms
75,776 KB
testcase_32 AC 54 ms
67,968 KB
testcase_33 AC 242 ms
75,904 KB
testcase_34 AC 223 ms
75,720 KB
testcase_35 AC 220 ms
75,904 KB
testcase_36 AC 223 ms
75,712 KB
testcase_37 AC 226 ms
75,776 KB
testcase_38 AC 230 ms
75,904 KB
testcase_39 AC 226 ms
76,156 KB
testcase_40 AC 222 ms
76,160 KB
testcase_41 AC 236 ms
76,032 KB
testcase_42 AC 232 ms
76,132 KB
testcase_43 AC 33 ms
51,968 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=0
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=ans_li_pre
print(ans)
print(*sorted(ans_li))
0