QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#863479 | #9986. Shiori | ucup-team425 | Compile Error | / | / | C++14 | 5.3kb | 2025-01-19 17:51:44 | 2025-01-19 17:51:45 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:16:12: warning: use of ‘auto’ in parameter declaration only available with ‘-std=c++20’ or ‘-fconcepts’ 16 | bool ckmin(auto&a,auto b){return b<a?a=b,1:0;} | ^~~~ answer.code:16:19: warning: use of ‘auto’ in parameter declaration only available with ‘-std=c++20’ or ‘-fconcepts’ 16 | bool ckmin(auto&a,auto b){return b<a?a=b,1:0;} | ^~~~ answer.code:17:12: warning: use of ‘auto’ in parameter declaration only available with ‘-std=c++20’ or ‘-fconcepts’ 17 | bool ckmax(auto&a,auto b){return b>a?a=b,1:0;} | ^~~~ answer.code:17:19: warning: use of ‘auto’ in parameter declaration only available with ‘-std=c++20’ or ‘-fconcepts’ 17 | bool ckmax(auto&a,auto b){return b>a?a=b,1:0;} | ^~~~ answer.code: In function ‘bool qry(int, int, int, int, int)’: answer.code:113:23: error: ‘tree_min’ was not declared in this scope 113 | if (tree_sz[id] * tree_min[id] == tree_sum[id]) { | ^~~~~~~~ answer.code: In function ‘int main()’: answer.code:198:24: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions] 198 | for (auto& [i, v]: restore_vec) { | ^