QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#161838 | #7104. Halting Problem | ucup-team1223# | Compile Error | / | / | C++14 | 1.8kb | 2023-09-03 02:19:01 | 2023-09-03 02:19:02 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
详细
answer.code: In function ‘int main()’: answer.code:13:16: error: missing template arguments before ‘vis’ 13 | vector vis(n, vector<bool>(256)); | ^~~ answer.code: In lambda function: answer.code:36:17: error: ‘vis’ was not declared in this scope 36 | if (vis[i][v]) { | ^~~ answer.code:39:13: error: ‘vis’ was not declared in this scope 39 | vis[i][v] = true; | ^~~ answer.code:40:18: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ 40 | auto [t, vl, to] = que[i]; | ^ answer.code:52:9: warning: control reaches end of non-void function [-Wreturn-type] 52 | }; | ^