結果
問題 | No.1360 [Zelkova 4th Tune] 協和音 |
ユーザー | ID 21712 |
提出日時 | 2024-12-16 10:55:58 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 639 bytes |
コンパイル時間 | 11,839 ms |
コンパイル使用メモリ | 224,064 KB |
実行使用メモリ | 814,932 KB |
最終ジャッジ日時 | 2024-12-16 10:57:19 |
合計ジャッジ時間 | 70,406 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | WA | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | WA | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
testcase_38 | MLE | - |
testcase_39 | MLE | - |
testcase_40 | MLE | - |
testcase_41 | MLE | - |
testcase_42 | MLE | - |
testcase_43 | WA | - |
testcase_44 | MLE | - |
testcase_45 | AC | 16 ms
6,692 KB |
testcase_46 | MLE | - |
ソースコード
package main import . "fmt" func main() { var n int Scan(&n) t:=make([]int64,1<<n) xs:=make([]int,0,1<<n) xs=append(xs,0) for i:=0;i<n;i++ { var a int64 Scan(&a) p:=1<<i for _,x:=range xs { t[x|p]=t[x]+a xs=append(xs,x|p) } } xs=xs[:1] for i:=0;i<n;i++ { for j:=0;j<n;j++ { var b int64 Scan(&b) if i>j { continue } p:=(1<<i)|(1<<j) for _,x:=range xs { t[x|p]=t[x]+b xs=append(xs,x|p) } } } var e int = 1 for i,v:=range t[1:] { if v>t[e] { e=i+1 } } Println(t[e]) var s string for i:=0;i<n;i++ { if (e&(1<<i))>0 { s+=Sprint(" ",i+1) } } Println(s[1:]) }