运行 ID | 作者 | 题号 | 测评结果 | 分数 | 时间 | 内存 | 语言 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
546793 | Sorrymaker | 1649 - [算法课回溯]组合问题 | 编译错误 | 0 | 0 MS | 0 KB | Java | 757 | 10个月前 |
Main.java:13: error: cannot find symbol
if(list.length() == k){
^
symbol: method length()
location: variable list of type List<Integer>
Main.java:17: error: cannot find symbol
if(list.length() +n-cur<k){
^
symbol: method length()
location: variable list of type List<Integer>
Main.java:22: error: cannot find symbol
list.remove(list.length - 1);
^
symbol: variable length
location: variable list of type List<Integer>
3 errors