結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,932 KB
testcase_01 AC 44 ms
53,604 KB
testcase_02 AC 38 ms
52,704 KB
testcase_03 AC 38 ms
54,056 KB
testcase_04 AC 38 ms
52,708 KB
testcase_05 AC 39 ms
53,152 KB
testcase_06 AC 64 ms
53,744 KB
testcase_07 AC 67 ms
52,868 KB
testcase_08 AC 38 ms
53,664 KB
testcase_09 AC 39 ms
52,560 KB
testcase_10 AC 38 ms
52,932 KB
testcase_11 AC 39 ms
53,440 KB
testcase_12 AC 38 ms
52,400 KB
testcase_13 AC 39 ms
53,268 KB
testcase_14 AC 50 ms
63,852 KB
testcase_15 AC 50 ms
63,484 KB
testcase_16 AC 47 ms
61,420 KB
testcase_17 AC 51 ms
64,464 KB
testcase_18 AC 39 ms
53,800 KB
testcase_19 AC 53 ms
64,484 KB
testcase_20 AC 50 ms
63,920 KB
testcase_21 AC 39 ms
52,784 KB
testcase_22 AC 52 ms
65,036 KB
testcase_23 AC 122 ms
76,004 KB
testcase_24 AC 165 ms
75,896 KB
testcase_25 AC 569 ms
75,764 KB
testcase_26 AC 58 ms
73,008 KB
testcase_27 AC 57 ms
68,264 KB
testcase_28 AC 564 ms
75,848 KB
testcase_29 AC 80 ms
75,856 KB
testcase_30 AC 122 ms
75,820 KB
testcase_31 AC 122 ms
75,700 KB
testcase_32 AC 69 ms
76,188 KB
testcase_33 AC 571 ms
75,580 KB
testcase_34 AC 567 ms
75,620 KB
testcase_35 AC 569 ms
76,144 KB
testcase_36 AC 568 ms
76,016 KB
testcase_37 AC 568 ms
75,640 KB
testcase_38 AC 569 ms
75,496 KB
testcase_39 AC 570 ms
75,756 KB
testcase_40 AC 568 ms
75,676 KB
testcase_41 AC 568 ms
75,836 KB
testcase_42 AC 569 ms
75,776 KB
testcase_43 AC 38 ms
53,508 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)
        print()
        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