QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#545207 | #9221. Missing Boundaries | ucup-team4800 | Compile Error | / | / | C++14 | 2.1kb | 2024-09-03 01:24:13 | 2024-09-03 01:24:13 |
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:10:20: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 10 | for (auto &[a, b] : ranges) { | ^ answer.code:14:14: error: ‘sort’ is not a member of ‘std’; did you mean ‘qsort’? 14 | std::sort(ranges, ranges + n, | ^~~~ | qsort answer.code:32:26: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 32 | for (const auto &[a, b] : ranges) { | ^