結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー titiatitia
提出日時 2021-01-22 21:26:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 76,320 KB
最終ジャッジ日時 2024-06-08 13:05:06
合計ジャッジ時間 11,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 34 ms
51,584 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 35 ms
52,352 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 34 ms
51,584 KB
testcase_10 AC 35 ms
51,840 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 AC 35 ms
52,480 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 51 ms
63,616 KB
testcase_15 AC 52 ms
63,232 KB
testcase_16 AC 45 ms
60,416 KB
testcase_17 AC 51 ms
63,104 KB
testcase_18 AC 35 ms
52,352 KB
testcase_19 AC 53 ms
64,896 KB
testcase_20 AC 52 ms
63,232 KB
testcase_21 AC 37 ms
52,608 KB
testcase_22 AC 53 ms
65,024 KB
testcase_23 AC 116 ms
75,648 KB
testcase_24 AC 144 ms
76,160 KB
testcase_25 AC 461 ms
76,236 KB
testcase_26 AC 59 ms
67,840 KB
testcase_27 AC 55 ms
65,792 KB
testcase_28 AC 470 ms
76,160 KB
testcase_29 AC 79 ms
76,160 KB
testcase_30 AC 118 ms
76,160 KB
testcase_31 AC 118 ms
75,928 KB
testcase_32 AC 65 ms
71,808 KB
testcase_33 AC 468 ms
76,288 KB
testcase_34 AC 462 ms
76,080 KB
testcase_35 AC 479 ms
75,976 KB
testcase_36 AC 463 ms
75,776 KB
testcase_37 AC 462 ms
75,776 KB
testcase_38 AC 462 ms
76,160 KB
testcase_39 AC 484 ms
75,648 KB
testcase_40 AC 466 ms
76,024 KB
testcase_41 AC 462 ms
76,040 KB
testcase_42 AC 462 ms
75,904 KB
testcase_43 AC 34 ms
52,352 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
B=[list(map(int,input().split())) for i in range(N)]

ANS=-1<<60
ANSIND=[]

for i in range(1<<N):
    LIST=[0]*N
    S=0
    for j in range(N):
        if (1<<j) & i !=0:
            LIST[j]=1
            S+=A[j]

    for j in range(N):
        for k in range(j+1,N):
            if LIST[j]==1 and LIST[k]==1:
                S+=B[j][k]

    if ANS<S:
        ANS=S
        ANSIND=[i+1 for i in range(N) if LIST[i]==1]

print(ANS)

print(*ANSIND)
                
    
0