QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#397894 | #4799. Rotate Sum 3 | ucup-team2335 | Compile Error | / | / | C++14 | 2.5kb | 2024-04-24 19:16:03 | 2024-04-24 19:16:04 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:4:22: error: ‘ranges’ is not a namespace-name 4 | using namespace std::ranges; | ^~~~~~ answer.code: In function ‘int main()’: answer.code:75:22: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 75 | auto [X, Y] = v[0]; | ^ answer.code:98:30: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 98 | auto [lx, hx] = get(a[i]); | ^ answer.code:99:30: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 99 | auto [ly, hy] = get(a[(i + 1) % n]); | ^