結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー tentententen
提出日時 2021-01-25 09:30:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,507 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 77,928 KB
実行使用メモリ 42,680 KB
最終ジャッジ日時 2024-06-13 00:39:42
合計ジャッジ時間 14,898 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,352 KB
testcase_01 AC 110 ms
41,652 KB
testcase_02 AC 123 ms
41,220 KB
testcase_03 AC 109 ms
41,188 KB
testcase_04 AC 117 ms
41,348 KB
testcase_05 AC 121 ms
41,184 KB
testcase_06 AC 121 ms
40,272 KB
testcase_07 AC 127 ms
41,116 KB
testcase_08 AC 131 ms
41,264 KB
testcase_09 AC 123 ms
41,364 KB
testcase_10 AC 123 ms
41,356 KB
testcase_11 AC 117 ms
41,300 KB
testcase_12 AC 125 ms
41,316 KB
testcase_13 AC 112 ms
41,376 KB
testcase_14 AC 128 ms
41,352 KB
testcase_15 AC 129 ms
41,360 KB
testcase_16 AC 127 ms
41,432 KB
testcase_17 AC 129 ms
41,400 KB
testcase_18 AC 113 ms
41,560 KB
testcase_19 AC 128 ms
41,488 KB
testcase_20 AC 131 ms
41,568 KB
testcase_21 AC 123 ms
40,012 KB
testcase_22 AC 130 ms
41,444 KB
testcase_23 AC 155 ms
41,456 KB
testcase_24 AC 198 ms
41,764 KB
testcase_25 AC 217 ms
41,784 KB
testcase_26 AC 137 ms
41,288 KB
testcase_27 AC 135 ms
41,732 KB
testcase_28 AC 232 ms
42,536 KB
testcase_29 AC 156 ms
41,840 KB
testcase_30 AC 166 ms
41,728 KB
testcase_31 AC 161 ms
41,372 KB
testcase_32 AC 145 ms
41,804 KB
testcase_33 AC 225 ms
42,008 KB
testcase_34 AC 233 ms
41,892 KB
testcase_35 AC 232 ms
42,680 KB
testcase_36 AC 239 ms
42,172 KB
testcase_37 AC 230 ms
41,992 KB
testcase_38 AC 252 ms
41,808 KB
testcase_39 AC 238 ms
41,688 KB
testcase_40 AC 230 ms
41,996 KB
testcase_41 AC 238 ms
42,400 KB
testcase_42 AC 239 ms
41,592 KB
testcase_43 AC 124 ms
41,320 KB
testcase_44 AC 223 ms
41,720 KB
testcase_45 AC 118 ms
41,636 KB
testcase_46 AC 220 ms
41,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] bases = new int[n];
        for (int i = 0; i < n; i++) {
            bases[i] = sc.nextInt();
        }
        int[][] matrix = new int[n][n];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                matrix[i][j] = sc.nextInt();
            }
        }
        long ans = Long.MIN_VALUE;
        int idx = 0;
        for (int i = 1; i < (1 << n); i++) {
            long sum = 0;
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                sum += bases[j];
                for (int k = j + 1; k < n; k++) {
                    if ((i & (1 << k)) == 0) {
                        continue;
                    }
                    sum += matrix[j][k];
                }
            }
            if (ans < sum) {
                ans = sum;
                idx = i;
            }
        }
        System.out.println(ans);
        StringBuilder sb = new StringBuilder();
        boolean isFirst = true;
        for (int i = 0; i < n; i++) {
            if ((idx & (1 << i)) == 0) {
                continue;
            }
            if (!isFirst) {
                sb.append(" ");
            }
            isFirst = false;
            sb.append(i + 1);
        }
        System.out.println(sb);
    }
}
0