結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー 小野寺健小野寺健
提出日時 2021-05-21 14:24:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,175 bytes
コンパイル時間 3,556 ms
コンパイル使用メモリ 77,604 KB
実行使用メモリ 59,048 KB
最終ジャッジ日時 2024-10-10 07:29:23
合計ジャッジ時間 17,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,748 KB
testcase_01 AC 127 ms
53,996 KB
testcase_02 AC 130 ms
53,964 KB
testcase_03 AC 131 ms
54,032 KB
testcase_04 AC 125 ms
53,920 KB
testcase_05 AC 131 ms
54,008 KB
testcase_06 AC 132 ms
54,156 KB
testcase_07 AC 133 ms
54,024 KB
testcase_08 AC 131 ms
53,972 KB
testcase_09 AC 136 ms
54,032 KB
testcase_10 AC 130 ms
53,912 KB
testcase_11 AC 129 ms
53,996 KB
testcase_12 AC 133 ms
54,032 KB
testcase_13 AC 124 ms
53,096 KB
testcase_14 AC 139 ms
53,932 KB
testcase_15 AC 134 ms
54,164 KB
testcase_16 AC 138 ms
54,320 KB
testcase_17 AC 142 ms
54,212 KB
testcase_18 AC 134 ms
54,016 KB
testcase_19 AC 148 ms
54,372 KB
testcase_20 AC 139 ms
54,020 KB
testcase_21 AC 122 ms
53,096 KB
testcase_22 AC 146 ms
54,104 KB
testcase_23 AC 273 ms
58,548 KB
testcase_24 AC 271 ms
58,256 KB
testcase_25 AC 392 ms
58,640 KB
testcase_26 AC 185 ms
57,040 KB
testcase_27 AC 162 ms
54,240 KB
testcase_28 AC 426 ms
58,768 KB
testcase_29 AC 225 ms
58,168 KB
testcase_30 AC 251 ms
58,284 KB
testcase_31 AC 252 ms
58,476 KB
testcase_32 AC 189 ms
57,320 KB
testcase_33 AC 338 ms
58,740 KB
testcase_34 AC 371 ms
59,048 KB
testcase_35 AC 392 ms
58,564 KB
testcase_36 AC 425 ms
58,768 KB
testcase_37 AC 370 ms
58,396 KB
testcase_38 AC 407 ms
58,672 KB
testcase_39 AC 371 ms
58,640 KB
testcase_40 AC 335 ms
58,512 KB
testcase_41 AC 386 ms
58,868 KB
testcase_42 AC 388 ms
58,876 KB
testcase_43 AC 114 ms
52,860 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.List;
import java.util.ArrayList;

public class No1360 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		List<Integer> A = new ArrayList<Integer>();
		for (int i=0; i < N; i++) {
			A.add(scan.nextInt());
		}
		List<List<Integer>> B = new ArrayList<List<Integer>>();
		for (int i=0; i < N; i++) {
			List<Integer> l = new ArrayList<Integer>();
			for (int j=0; j < N; j++) {
				l.add(scan.nextInt());
			}
			B.add(l);
		}
		scan.close();
		long Max = Long.MIN_VALUE;
		int Max_comb = -1;
		for (int i=0; i < 1 << N; i++) {
			long point = 0;
			List<Integer> prev = new ArrayList<Integer>();
			for (int j=0; j < N; j++) {
				if ((i & (1 << j)) != 0) {
					point += A.get(j);
					for (int p : prev) {
						point += B.get(p).get(j);
					}
					prev.add(j);
				}
			}
			if (Max < point) {
				Max = point;
				Max_comb = i;
			}
		}
		List<String> J = new ArrayList<String>();
		for (int j=0; j < N; j++) {
			if ((Max_comb & (1 << j)) != 0) {
				J.add(String.valueOf(j+1));
			}
		}
		System.out.println(Max);
		System.out.println(String.join(" ", J));
	}

}
0