結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ygd.ygd.
提出日時 2021-06-16 23:36:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 76,268 KB
最終ジャッジ日時 2024-06-10 04:17:50
合計ジャッジ時間 12,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 35 ms
52,608 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 35 ms
52,736 KB
testcase_07 AC 35 ms
52,480 KB
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 36 ms
52,608 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 49 ms
62,848 KB
testcase_15 AC 51 ms
62,720 KB
testcase_16 AC 45 ms
60,416 KB
testcase_17 AC 50 ms
62,604 KB
testcase_18 AC 37 ms
52,992 KB
testcase_19 AC 52 ms
64,548 KB
testcase_20 AC 50 ms
62,464 KB
testcase_21 AC 37 ms
52,608 KB
testcase_22 AC 55 ms
64,256 KB
testcase_23 AC 118 ms
75,904 KB
testcase_24 AC 156 ms
76,068 KB
testcase_25 AC 510 ms
75,672 KB
testcase_26 AC 63 ms
72,320 KB
testcase_27 AC 58 ms
67,712 KB
testcase_28 AC 515 ms
75,612 KB
testcase_29 AC 81 ms
75,720 KB
testcase_30 AC 126 ms
76,188 KB
testcase_31 AC 120 ms
76,268 KB
testcase_32 AC 71 ms
76,032 KB
testcase_33 AC 512 ms
75,580 KB
testcase_34 AC 514 ms
75,724 KB
testcase_35 AC 510 ms
75,684 KB
testcase_36 AC 507 ms
76,188 KB
testcase_37 AC 510 ms
76,260 KB
testcase_38 AC 508 ms
76,092 KB
testcase_39 AC 530 ms
75,576 KB
testcase_40 AC 523 ms
75,992 KB
testcase_41 AC 529 ms
75,792 KB
testcase_42 AC 525 ms
75,636 KB
testcase_43 AC 35 ms
52,224 KB
testcase_44 AC 513 ms
75,872 KB
testcase_45 AC 36 ms
52,224 KB
testcase_46 AC 516 ms
76,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import inf


def main():
    N = int(input()); INF = float("inf")
    A = list(map(int,input().split()))
    B = [list(map(int,input().split())) for _ in range(N)]

    mx = -INF
    idx = -1

    for i in range(1,1<<N): #1個以上鳴らすので1から
        score = 0
        for j in range(N):
            if (i>>j)&1 == 1:
                score += A[j]
        for p in range(N):
            for q in range(p+1,N):
                if (i>>p)&1 == 1 and (i>>q)&1 == 1:
                    score += B[p][q]
        if score > mx:
            mx = score
            idx = i
    print(mx)
    ret = []
    for i in range(N):
        if (idx>>i)&1 == 1:
            ret.append(i+1) #1-index
    print(*ret)
    
        

if __name__ == '__main__':
    main()
0