結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー hiragnhiragn
提出日時 2022-11-24 09:02:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 76,172 KB
最終ジャッジ日時 2024-09-25 09:03:30
合計ジャッジ時間 14,760 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,584 KB
testcase_01 AC 37 ms
53,136 KB
testcase_02 AC 39 ms
53,780 KB
testcase_03 AC 39 ms
52,468 KB
testcase_04 AC 38 ms
53,000 KB
testcase_05 AC 37 ms
52,188 KB
testcase_06 AC 38 ms
52,544 KB
testcase_07 AC 39 ms
53,484 KB
testcase_08 AC 38 ms
52,180 KB
testcase_09 AC 39 ms
52,560 KB
testcase_10 AC 38 ms
53,160 KB
testcase_11 AC 37 ms
52,820 KB
testcase_12 AC 38 ms
52,708 KB
testcase_13 AC 39 ms
53,276 KB
testcase_14 AC 54 ms
64,676 KB
testcase_15 AC 53 ms
65,068 KB
testcase_16 AC 45 ms
61,136 KB
testcase_17 AC 54 ms
66,280 KB
testcase_18 AC 39 ms
53,100 KB
testcase_19 AC 57 ms
66,780 KB
testcase_20 AC 53 ms
64,748 KB
testcase_21 AC 38 ms
53,820 KB
testcase_22 AC 56 ms
66,648 KB
testcase_23 AC 128 ms
75,872 KB
testcase_24 AC 186 ms
75,628 KB
testcase_25 AC 659 ms
75,780 KB
testcase_26 AC 62 ms
73,616 KB
testcase_27 AC 58 ms
69,760 KB
testcase_28 AC 653 ms
76,172 KB
testcase_29 AC 85 ms
75,992 KB
testcase_30 AC 128 ms
75,544 KB
testcase_31 AC 127 ms
75,680 KB
testcase_32 AC 71 ms
75,904 KB
testcase_33 AC 655 ms
75,772 KB
testcase_34 AC 656 ms
75,628 KB
testcase_35 AC 654 ms
75,632 KB
testcase_36 AC 655 ms
75,636 KB
testcase_37 AC 657 ms
75,704 KB
testcase_38 AC 656 ms
75,796 KB
testcase_39 AC 655 ms
75,600 KB
testcase_40 AC 657 ms
75,760 KB
testcase_41 AC 658 ms
75,744 KB
testcase_42 AC 653 ms
76,148 KB
testcase_43 AC 38 ms
52,492 KB
testcase_44 AC 655 ms
75,628 KB
testcase_45 AC 38 ms
53,376 KB
testcase_46 AC 657 ms
75,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    a = list(map(int, input().split()))
    b = [list(map(int, input().split())) for _ in range(n)]

    inf = 1 << 60
    ans = -inf
    ans_bit = 0
    for bit in range(1, 1 << n):
        res = 0
        for i in range(n):
            if bit & (1 << i):
                res += a[i]
        for i in range(n):
            for j in range(i + 1, n):
                if bit & (1 << i) and bit & (1 << j):
                    res += b[i][j]
        if ans < res:
            ans = res
            ans_bit = bit

    print(ans)
    print(*[i + 1 for i in range(n) if ans_bit & (1 << i)])


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