QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#747426 | #9432. Permutation | Huluobo | Compile Error | / | / | C++14 | 1.9kb | 2024-11-14 17:09:01 | 2024-11-14 17:09:02 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void solve(int, int, std::vector<int>)’: answer.code:37:37: error: missing template arguments before ‘b’ 37 | std::vector b(n, x); | ^ answer.code:39:33: error: ‘b’ was not declared in this scope 39 | b[i] = v[0]; | ^ answer.code:41:41: error: ‘b’ was not declared in this scope 41 | int res = query(b); | ^ answer.code:65:37: error: missing template arguments before ‘b’ 65 | std::vector b(n, al[0]); | ^ answer.code:67:33: error: ‘b’ was not declared in this scope 67 | b[i] = v[0]; | ^ answer.code:69:35: error: ‘b’ was not declared in this scope 69 | if (query(b) == 2) { | ^