結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー ID 21712ID 21712
提出日時 2024-12-16 11:08:38
言語 Go
(1.22.1)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 617 bytes
コンパイル時間 11,408 ms
コンパイル使用メモリ 235,936 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-16 11:08:56
合計ジャッジ時間 16,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 14 ms
6,816 KB
testcase_24 AC 26 ms
6,820 KB
testcase_25 AC 107 ms
6,820 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 112 ms
6,820 KB
testcase_29 AC 7 ms
6,816 KB
testcase_30 AC 14 ms
6,820 KB
testcase_31 AC 14 ms
6,816 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 111 ms
6,816 KB
testcase_34 AC 112 ms
6,816 KB
testcase_35 AC 112 ms
6,816 KB
testcase_36 AC 108 ms
6,820 KB
testcase_37 AC 120 ms
6,820 KB
testcase_38 AC 115 ms
6,820 KB
testcase_39 AC 114 ms
6,816 KB
testcase_40 AC 110 ms
6,820 KB
testcase_41 AC 112 ms
6,816 KB
testcase_42 AC 110 ms
6,820 KB
testcase_43 AC 1 ms
6,820 KB
testcase_44 AC 108 ms
6,816 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 117 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n int
	Scan(&n)
	a:=make([]int64,n)
	for i:=range a {
		Scan(&a[i])
	}
	b:=make([][]int64,n)
	for i:=range b {
		b[i]=make([]int64,n)
		for j:=range b[i] {
			Scan(&b[i][j])
		}
	}
	var w int64
	var e int
	for i:=1;i<(1<<n);i++ {
		var t int64
		for x:=0;x<n;x++ {
			if (i&(1<<x))==0 {
				continue
			}
			t+=a[x]
			for y:=0;y<x;y++ {
				if (i&(1<<y))==0 {
					continue
				}
				t+=b[x][y]
			}
		} 
		if e==0||t>w {
			w=t
			e=i
		}
	}
	Println(w)
	var s string
	for i:=0;i<n;i++ {
		if (e&(1<<i))==0 {
			continue
		}
		s+=Sprint(" ",i+1)
	}
	Println(s[1:])
}
0