結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ygd.ygd.
提出日時 2021-06-16 23:33:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,240 KB
最終ジャッジ日時 2024-12-31 13:51:56
合計ジャッジ時間 13,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,444 KB
testcase_01 AC 38 ms
52,836 KB
testcase_02 AC 38 ms
53,996 KB
testcase_03 AC 38 ms
52,380 KB
testcase_04 AC 38 ms
52,468 KB
testcase_05 AC 38 ms
52,448 KB
testcase_06 AC 38 ms
53,000 KB
testcase_07 AC 38 ms
53,204 KB
testcase_08 AC 40 ms
52,892 KB
testcase_09 AC 39 ms
53,724 KB
testcase_10 AC 39 ms
53,872 KB
testcase_11 AC 38 ms
53,332 KB
testcase_12 AC 38 ms
52,800 KB
testcase_13 AC 40 ms
53,136 KB
testcase_14 AC 51 ms
63,764 KB
testcase_15 AC 51 ms
63,416 KB
testcase_16 AC 47 ms
61,084 KB
testcase_17 AC 54 ms
64,364 KB
testcase_18 AC 39 ms
52,808 KB
testcase_19 AC 54 ms
65,420 KB
testcase_20 AC 51 ms
63,224 KB
testcase_21 AC 39 ms
53,264 KB
testcase_22 AC 52 ms
65,840 KB
testcase_23 AC 121 ms
75,756 KB
testcase_24 AC 164 ms
75,984 KB
testcase_25 AC 582 ms
76,020 KB
testcase_26 AC 60 ms
72,268 KB
testcase_27 AC 56 ms
68,472 KB
testcase_28 AC 567 ms
75,816 KB
testcase_29 AC 82 ms
75,812 KB
testcase_30 AC 122 ms
75,720 KB
testcase_31 AC 121 ms
75,712 KB
testcase_32 AC 70 ms
76,108 KB
testcase_33 AC 577 ms
75,884 KB
testcase_34 AC 567 ms
76,132 KB
testcase_35 AC 569 ms
75,808 KB
testcase_36 AC 568 ms
75,764 KB
testcase_37 AC 573 ms
76,040 KB
testcase_38 AC 573 ms
75,768 KB
testcase_39 AC 570 ms
75,816 KB
testcase_40 AC 567 ms
75,896 KB
testcase_41 AC 568 ms
75,832 KB
testcase_42 AC 571 ms
75,780 KB
testcase_43 AC 39 ms
52,256 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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<<N):
        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
    if mx == -INF:
        print(0)
        ret = []
        print(*ret)
        exit()
    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