发点迷惑代码 dfs 加打表辅助 import kotlin.math.abs import kotlin.math.max fun main(args: Array<String>) { val s = IntArray(10) { 0 } dfs(s) } val out = listOf("-", "A", "B", "C") fun dfs(s: IntArray, t: Int = 0) { if (t >= 10) { if (judge(s)) { for (i in s) { ...