QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#101780 | #5460. Sum of Numbers | smax# | Compile Error | / | / | C++23 | 2.3kb | 2023-05-01 07:02:06 | 2023-05-01 07:02:09 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘int main()’: answer.code:81:14: error: too many arguments to function ‘void recur(int, int, int, int)’ 81 | recur(0, INT_MAX, INT_MIN, 0, two, neg); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ answer.code:25:6: note: declared here 25 | void recur(int i, int mn, int mx, int sum) { | ^~~~~