QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#853841 | #9736. Kind of Bingo | ucup-team5055# | Compile Error | / | / | C++14 | 744b | 2025-01-11 19:37:54 | 2025-01-11 19:38:01 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code: In function ‘void solve()’: answer.code:12:16: error: missing template arguments before ‘grd’ 12 | vector grd(n, vector<int>(m)); | ^~~ answer.code:16:17: error: ‘grd’ was not declared in this scope; did you mean ‘grid’? 16 | grd[i/m][i%m] = x+1; | ^~~ | grid answer.code:28:22: error: ‘grd’ was not declared in this scope; did you mean ‘grid’? 28 | sort(grd[i].begin(), grd[i].end()); | ^~~ | grid