QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#727909 | #9570. Binary Tree | ucup-team5522# | Compile Error | / | / | C++14 | 2.6kb | 2024-11-09 14:07:01 | 2024-11-09 14:07:03 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void dfs(int, int)’: answer.code:24:12: error: too few arguments to function ‘void dfs(int, int)’ 24 | dfs(v); | ~~~^~~ answer.code:15:6: note: declared here 15 | void dfs(int u, int fa) | ^~~ answer.code: In function ‘void del(int, int)’: answer.code:43:12: error: too few arguments to function ‘void del(int, int)’ 43 | del(v); | ~~~^~~ answer.code:35:6: note: declared here 35 | void del(int u, int fa) | ^~~ answer.code: In function ‘void solve(int)’: answer.code:66:30: error: expected ‘;’ before string constant 66 | cout << a << " " << b "\n"; | ^~~~~ | ;